From 5286477f739238917c2e5ed81dd44f28be449f3e Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 23 Sep 2018 15:15:18 +0200 Subject: [PATCH] Chrono: remove unnecessary `typedef rep` It is already inherited by the base class, and we don't need to import it explicitly. --- src/Chrono.hxx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Chrono.hxx b/src/Chrono.hxx index 4261dcaaf..a01301e32 100644 --- a/src/Chrono.hxx +++ b/src/Chrono.hxx @@ -32,7 +32,6 @@ using FloatDuration = std::chrono::duration; */ class SongTime : public std::chrono::duration { typedef std::chrono::duration Base; - typedef Base::rep rep; public: SongTime() = default; @@ -121,7 +120,6 @@ public: */ class SignedSongTime : public std::chrono::duration { typedef std::chrono::duration Base; - typedef Base::rep rep; public: SignedSongTime() = default;