We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 008f6c1 commit 5152d31Copy full SHA for 5152d31
CHANGES
@@ -1,5 +1,7 @@
1
Changes
2
=======
3
+v3.1.12.1
4
+- replaced std::chrono::high_resolution_clock by std::chrono::steady_clock in MainLoopContext.cpp
5
6
v3.1.12
7
- Add possibility to be notified on proxy destruction via
src/CommonAPI/MainLoopContext.cpp
@@ -8,7 +8,7 @@
8
namespace CommonAPI {
9
10
int64_t getCurrentTimeInMs() {
11
- return std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::high_resolution_clock::now().time_since_epoch()).count();
+ return std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::steady_clock::now().time_since_epoch()).count();
12
}
13
14
const std::string &MainLoopContext::getName() const {
0 commit comments