Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ACGL
acgl
Commits
22c374d5
Commit
22c374d5
authored
May 08, 2014
by
Janis Born
Browse files
fix -Wdeprecated-increment-bool warnings
parent
ff03bf53
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/ACGL/Utils/PerformanceTimer.hh
View file @
22c374d5
...
...
@@ -140,7 +140,10 @@ class CSystemTimer : public CProcessTimer
public:
CSystemTimer
()
:
CProcessTimer
()
{
static
bool
warned
=
false
;
if
(
!
warned
++
)
ACGL
::
Utils
::
error
()
<<
"No system timer present on this OS - fallback to process time"
<<
std
::
endl
;
if
(
!
warned
)
{
ACGL
::
Utils
::
error
()
<<
"No system timer present on this OS - fallback to process time"
<<
std
::
endl
;
warned
=
true
;
}
}
};
...
...
@@ -150,7 +153,10 @@ class CThreadTimer : public CProcessTimer
public:
CThreadTimer
()
:
CProcessTimer
()
{
static
bool
warned
=
false
;
if
(
!
warned
++
)
ACGL
::
Utils
::
error
()
<<
"No thread timer present on this OS - fallback to process time"
<<
std
::
endl
;
if
(
!
warned
)
{
ACGL
::
Utils
::
error
()
<<
"No thread timer present on this OS - fallback to process time"
<<
std
::
endl
;
warned
=
true
;
}
}
};
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment