diff options
author | rtk0c <[email protected]> | 2021-06-30 11:53:50 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2021-06-30 11:53:50 -0700 |
commit | c2c9452cdd6f50923c02d59c68087add8d17f03a (patch) | |
tree | daad31af4f828cb7396da64dc33488c3d7698a4f /core/src/Utils | |
parent | 782e95613da7fb2eb7a2fe9c3c9fbb5b6f756b09 (diff) |
Fix notable warnings (from gcc)
Diffstat (limited to 'core/src/Utils')
-rw-r--r-- | core/src/Utils/Time.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/core/src/Utils/Time.cpp b/core/src/Utils/Time.cpp index 9086e31..4e79ffa 100644 --- a/core/src/Utils/Time.cpp +++ b/core/src/Utils/Time.cpp @@ -22,8 +22,6 @@ std::string TimeUtils::StringifyTimeStamp(int64_t timeStamp) } namespace chrono = std::chrono; - using Clock = chrono::system_clock; - chrono::milliseconds d{ timeStamp }; chrono::time_point<chrono::system_clock> tp{ d }; |