Skip to content
Snippets Groups Projects
Commit 72d82220 authored by Joan Solà Ortega's avatar Joan Solà Ortega
Browse files

Fix API for some const-ness

parent 3109e348
No related branches found
No related tags found
1 merge request!447new tag
Pipeline #9660 passed
This commit is part of merge request !447. Comments created here will be created in the context of that merge request.
......@@ -125,8 +125,8 @@ class TrackMatrix
// bool markKeyframe(CaptureBasePtr _capture);
// bool unmarkKeyframe(CaptureBasePtr _capture);
const map<SizeStd, Track>& getTracks(){return tracks_;}
const map<CaptureBasePtr, Snapshot >& getSnapshots(){return snapshots_;}
const map<SizeStd, Track>& getTracks() const {return tracks_;}
const map<CaptureBasePtr, Snapshot >& getSnapshots() const {return snapshots_;}
private:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment