diff options
author | Naios <naios-dev@live.de> | 2017-12-08 04:01:58 +0100 |
---|---|---|
committer | Naios <naios-dev@live.de> | 2017-12-17 20:22:34 +0100 |
commit | 364fde52138c88a85f7ba5f1ea374b4196a893d4 (patch) | |
tree | 40edac05d9407242534d74599fefde216000eccc | |
parent | ca023fd60aa7e75987c93b776c309e0d81931bd8 (diff) |
Core/Utilities: Globally enable C++14 chrono literals
* Usable like 12s, 15m...
-rw-r--r-- | src/common/Utilities/Duration.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/common/Utilities/Duration.h b/src/common/Utilities/Duration.h index 5fa90dc14ad..a5a6b1d3fea 100644 --- a/src/common/Utilities/Duration.h +++ b/src/common/Utilities/Duration.h @@ -33,7 +33,6 @@ typedef std::chrono::minutes Minutes; typedef std::chrono::hours Hours; /// Makes std::chrono_literals globally available. -// ToDo: Enable this when TC supports C++14. -// using namespace std::chrono_literals; +using namespace std::chrono_literals; #endif // _DURATION_H_ |