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
157d4ded
Commit
157d4ded
authored
Mar 18, 2014
by
Philip Trettner
Browse files
Only warn once on windows for unsupported timer usage
parent
05a2d5c1
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/ACGL/Utils/PerformanceTimer.hh
View file @
157d4ded
...
...
@@ -139,7 +139,8 @@ class CSystemTimer : public CProcessTimer
{
public:
CSystemTimer
()
:
CProcessTimer
()
{
ACGL
::
Utils
::
error
()
<<
"No system timer present on this OS - fallback to process time"
<<
std
::
endl
;
static
bool
warned
=
false
;
if
(
!
warned
++
)
ACGL
::
Utils
::
error
()
<<
"No system timer present on this OS - fallback to process time"
<<
std
::
endl
;
}
};
...
...
@@ -147,8 +148,9 @@ public:
class
CThreadTimer
:
public
CProcessTimer
{
public:
CThreadTimer
()
:
CProcessTimer
()
{
ACGL
::
Utils
::
error
()
<<
"No thread timer present on this OS - fallback to process time"
<<
std
::
endl
;
CThreadTimer
()
:
CProcessTimer
()
{
static
bool
warned
=
false
;
if
(
!
warned
++
)
ACGL
::
Utils
::
error
()
<<
"No thread timer present on this OS - fallback to process time"
<<
std
::
endl
;
}
};
...
...
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