10 lines
283 B
Plaintext
10 lines
283 B
Plaintext
|
|
# -*- mode: snippet -*-
|
||
|
|
# name: timestamp
|
||
|
|
# key: timestamp
|
||
|
|
# --
|
||
|
|
//! Time is measured using chrono::steady_clock
|
||
|
|
static double timestamp() {
|
||
|
|
return std::chrono::duration_cast<std::chrono::duration<double> >(
|
||
|
|
std::chrono::steady_clock::now().time_since_epoch()).count();
|
||
|
|
}
|