mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04: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);
|
||
|
|
}
|