Removed more redundant compatibility stuff from timer
diff --git a/include/internal/catch_timer.h b/include/internal/catch_timer.h
index 1d69016..6e8cf08 100644
--- a/include/internal/catch_timer.h
+++ b/include/internal/catch_timer.h
@@ -8,11 +8,8 @@
 #ifndef TWOBLUECUBES_CATCH_TIMER_H_INCLUDED
 #define TWOBLUECUBES_CATCH_TIMER_H_INCLUDED
 
-#include "catch_platform.h"
-
 #include <stdint.h>
 
-
 namespace Catch {
     class Timer {
     public:
diff --git a/include/internal/catch_timer.hpp b/include/internal/catch_timer.hpp
index d8bcfce..52de3e8 100644
--- a/include/internal/catch_timer.hpp
+++ b/include/internal/catch_timer.hpp
@@ -9,11 +9,6 @@
 #include "catch_timer.h"
 #include "catch_platform.h"
 
-#ifdef __clang__
-#pragma clang diagnostic push
-#pragma clang diagnostic ignored "-Wc++11-long-long"
-#endif
-
 #ifdef CATCH_PLATFORM_WINDOWS
 
 #  include "catch_windows_h_proxy.h"
@@ -61,7 +56,3 @@
     }
 
 } // namespace Catch
-
-#ifdef __clang__
-#pragma clang diagnostic pop
-#endif