Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
utility
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
bioroboticslab
biotracker
utility
Commits
e8d2237c
Commit
e8d2237c
authored
5 years ago
by
calrama
Browse files
Options
Downloads
Patches
Plain Diff
Fix some warnings
parent
83a6db1a
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Src/Utility/TrackedComponents/TrackedElement.h
+1
-2
1 addition, 2 deletions
Src/Utility/TrackedComponents/TrackedElement.h
Src/Utility/TrackedComponents/TrackedTrajectory.h
+1
-1
1 addition, 1 deletion
Src/Utility/TrackedComponents/TrackedTrajectory.h
with
2 additions
and
3 deletions
Src/Utility/TrackedComponents/TrackedElement.h
+
1
−
2
View file @
e8d2237c
...
...
@@ -41,7 +41,6 @@ public:
_timeSysclck
=
t
;
};
virtual
void
setTime
(
qint64
t
)
override
{
std
::
string
::
size_type
sz
=
0
;
long
long
ll
=
t
/
1000
;
std
::
time_t
tm
(
ll
);
_timeSysclck
=
std
::
chrono
::
system_clock
::
from_time_t
(
tm
);
...
...
@@ -93,7 +92,7 @@ public:
// ITrackedPoint interface
public
:
void
operate
();
void
operate
()
override
;
private
:
std
::
chrono
::
system_clock
::
time_point
_timeSysclck
;
...
...
This diff is collapsed.
Click to expand it.
Src/Utility/TrackedComponents/TrackedTrajectory.h
+
1
−
1
View file @
e8d2237c
...
...
@@ -21,7 +21,7 @@ class TrackedTrajectory : public IModelTrackedTrajectory {
// ITrackedComponent interface
public
:
void
operate
();
void
operate
()
override
;
// ITrackedObject interface
public
:
...
...
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