aboutsummaryrefslogtreecommitdiff
path: root/src/randomenv.cpp
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2023-01-05 19:52:33 +0000
committerfanquake <fanquake@gmail.com>2023-01-12 13:42:44 +0000
commit672f7ad747ecc6e04472f96fa88332be1f39d39b (patch)
treec68c5f09592c4f219d2fbfb7faf07a0dbc1b1292 /src/randomenv.cpp
parentedc3d1b296e34838d649dc21b8483a52e214932a (diff)
downloadbitcoin-672f7ad747ecc6e04472f96fa88332be1f39d39b.tar.xz
doc: remove usages of C++11
Now it's just the standard library.
Diffstat (limited to 'src/randomenv.cpp')
-rw-r--r--src/randomenv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/randomenv.cpp b/src/randomenv.cpp
index 0b97d747cb..35d090c71d 100644
--- a/src/randomenv.cpp
+++ b/src/randomenv.cpp
@@ -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();