summaryrefslogtreecommitdiff
path: root/zen/tick_count.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/tick_count.h')
-rw-r--r--zen/tick_count.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/tick_count.h b/zen/tick_count.h
index 962ebcb0..4f1a047e 100644
--- a/zen/tick_count.h
+++ b/zen/tick_count.h
@@ -24,7 +24,7 @@ class TickVal;
std::int64_t operator-(const TickVal& lhs, const TickVal& rhs);
std::int64_t ticksPerSec(); //return 0 on error
-TickVal getTicks(); //return invalid value on error
+TickVal getTicks(); //return invalid value on error: !TickVal::isValid()
bgstack15