doc: remove usages of C++11

Now it's just the standard library.
This commit is contained in:
fanquake
2023-01-05 19:52:33 +00:00
parent edc3d1b296
commit 672f7ad747
6 changed files with 7 additions and 7 deletions

View File

@@ -250,7 +250,7 @@ void RandAddDynamicEnv(CSHA512& hasher)
gettimeofday(&tv, nullptr);
hasher << tv;
#endif
// Probably redundant, but also use all the clocks C++11 provides:
// Probably redundant, but also use all the standard library clocks:
hasher << std::chrono::system_clock::now().time_since_epoch().count();
hasher << std::chrono::steady_clock::now().time_since_epoch().count();
hasher << std::chrono::high_resolution_clock::now().time_since_epoch().count();