diff --git a/include/llvm/Support/Timer.h b/include/llvm/Support/Timer.h index f959136f86a..a5a33ba3240 100644 --- a/include/llvm/Support/Timer.h +++ b/include/llvm/Support/Timer.h @@ -18,7 +18,6 @@ #include "llvm/System/DataTypes.h" #include "llvm/ADT/StringRef.h" #include -#include #include #include @@ -165,7 +164,7 @@ struct NamedRegionTimer : public TimeRegion { class TimerGroup { std::string Name; Timer *FirstTimer; // First timer in the group. - std::vector > TimersToPrint; + std::vector > TimersToPrint; TimerGroup **Prev, *Next; // Doubly linked list of TimerGroup's. TimerGroup(const TimerGroup &TG); // DO NOT IMPLEMENT