mirror of
https://gitlab.com/hashborgir/d2tweaks-rnd2k.git
synced 2025-04-27 06:45:34 +00:00
8 lines
136 B
C++
8 lines
136 B
C++
#include <chrono>
|
|
|
|
int main() {
|
|
typedef std::chrono::steady_clock Clock;
|
|
Clock::time_point tp = Clock::now();
|
|
((void)tp);
|
|
}
|