Rename current_time() to now()

Follow C++11 naming conventions.

No functional change.
This commit is contained in:
Marco Costalba
2012-09-02 16:39:01 +02:00
parent e6d8e74152
commit 5900ab76a0
6 changed files with 9 additions and 9 deletions

View File

@@ -340,7 +340,7 @@ namespace {
Book::Book() {
for (int i = Time::current_time().msec() % 10000; i > 0; i--)
for (int i = Time::now().msec() % 10000; i > 0; i--)
RKiss.rand<unsigned>(); // Make random number generation less deterministic
}