diff options
author | megamage <none@none> | 2009-02-12 17:09:15 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-02-12 17:09:15 -0600 |
commit | 6aee5fcbe7473a3cbac12b7e8482a7b98bef8be3 (patch) | |
tree | 91ec91d5c19eba9c2fe0e84b1c9dc7047a3de80e /dep/src/zthread/macos/UpTimeStrategy.h | |
parent | 2d2f433b4de1c35b22aaf07854fc0ee11fcb350d (diff) | |
parent | f385747164c3fb278c92ef46fbd6c3da6590bbf0 (diff) |
*Merge.
--HG--
branch : trunk
Diffstat (limited to 'dep/src/zthread/macos/UpTimeStrategy.h')
-rw-r--r-- | dep/src/zthread/macos/UpTimeStrategy.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dep/src/zthread/macos/UpTimeStrategy.h b/dep/src/zthread/macos/UpTimeStrategy.h index f2056e14ca2..0f7962d7eca 100644 --- a/dep/src/zthread/macos/UpTimeStrategy.h +++ b/dep/src/zthread/macos/UpTimeStrategy.h @@ -40,7 +40,7 @@ class TimeStrategy { unsigned long _s; public: - + TimeStrategy() { // Get the absolute time in milliseconds relative to the program startup @@ -53,12 +53,12 @@ class TimeStrategy { _ms = now % 1000; } - + inline unsigned long seconds() const { return _s; } - inline unsigned long milliseconds() const { + inline unsigned long milliseconds() const { return _ms; } |