1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-28 12:02:00 +03:00

using Google Benchmark #921

This commit is contained in:
Niels Lohmann
2018-01-18 22:00:32 +01:00
parent a8f711a2f1
commit b406e3704b
53 changed files with 8039 additions and 0 deletions

View File

@ -0,0 +1,7 @@
#include <chrono>
int main() {
typedef std::chrono::steady_clock Clock;
Clock::time_point tp = Clock::now();
((void)tp);
}