summaryrefslogtreecommitdiff
path: root/test/std/utilities/time/clock.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/std/utilities/time/clock.h')
-rw-r--r--test/std/utilities/time/clock.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/test/std/utilities/time/clock.h b/test/std/utilities/time/clock.h
deleted file mode 100644
index c72470c9cc8d3..0000000000000
--- a/test/std/utilities/time/clock.h
+++ /dev/null
@@ -1,26 +0,0 @@
-//===----------------------------------------------------------------------===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is dual licensed under the MIT and the University of Illinois Open
-// Source Licenses. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef CLOCK_H
-#define CLOCK_H
-
-#include <chrono>
-
-class Clock
-{
- typedef std::chrono::nanoseconds duration;
- typedef duration::rep rep;
- typedef duration::period period;
- typedef std::chrono::time_point<Clock, duration> time_point;
- static const bool is_steady = false;
-
- static time_point now();
-};
-
-#endif // CLOCK_H