Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
wolf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mobile_robotics
wolf_projects
wolf_lib
wolf
Commits
72d82220
Commit
72d82220
authored
3 years ago
by
Joan Solà Ortega
Browse files
Options
Downloads
Patches
Plain Diff
Fix API for some const-ness
parent
3109e348
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!447
new tag
Pipeline
#9660
passed
3 years ago
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/core/processor/track_matrix.h
+2
-2
2 additions, 2 deletions
include/core/processor/track_matrix.h
with
2 additions
and
2 deletions
include/core/processor/track_matrix.h
+
2
−
2
View file @
72d82220
...
@@ -125,8 +125,8 @@ class TrackMatrix
...
@@ -125,8 +125,8 @@ class TrackMatrix
// bool markKeyframe(CaptureBasePtr _capture);
// bool markKeyframe(CaptureBasePtr _capture);
// bool unmarkKeyframe(CaptureBasePtr _capture);
// bool unmarkKeyframe(CaptureBasePtr _capture);
const
map
<
SizeStd
,
Track
>&
getTracks
(){
return
tracks_
;}
const
map
<
SizeStd
,
Track
>&
getTracks
()
const
{
return
tracks_
;}
const
map
<
CaptureBasePtr
,
Snapshot
>&
getSnapshots
(){
return
snapshots_
;}
const
map
<
CaptureBasePtr
,
Snapshot
>&
getSnapshots
()
const
{
return
snapshots_
;}
private
:
private
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment