Commit 693967fe by Jean-Louis Leroy

Remove unnecessary `typename'.

parent 47c30453
...@@ -51,7 +51,7 @@ struct ChooseSteadyClock<false> { ...@@ -51,7 +51,7 @@ struct ChooseSteadyClock<false> {
struct ChooseClockType { struct ChooseClockType {
#if defined(HAVE_STEADY_CLOCK) #if defined(HAVE_STEADY_CLOCK)
typedef typename ChooseSteadyClock<>::type type; typedef ChooseSteadyClock<>::type type;
#else #else
typedef std::chrono::high_resolution_clock type; typedef std::chrono::high_resolution_clock type;
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment