mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-08 08:35:20 +00:00
8 lines
105 B
C++
8 lines
105 B
C++
|
#include <chrono>
|
||
|
|
||
|
using std::chrono::steady_clock;
|
||
|
|
||
|
void foo(const steady_clock &clock) {
|
||
|
return;
|
||
|
}
|