Remove unnecessary `typename'.

This commit is contained in:
Jean-Louis Leroy 2015-04-13 13:44:49 -04:00
parent 47c304536e
commit 693967fe19

View File

@ -51,7 +51,7 @@ struct ChooseSteadyClock<false> {
struct ChooseClockType {
#if defined(HAVE_STEADY_CLOCK)
typedef typename ChooseSteadyClock<>::type type;
typedef ChooseSteadyClock<>::type type;
#else
typedef std::chrono::high_resolution_clock type;
#endif