summaryrefslogtreecommitdiff
path: root/include/Support/Statistic.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/Support/Statistic.h')
-rw-r--r--include/Support/Statistic.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/Support/Statistic.h b/include/Support/Statistic.h
index d69809ff18..4e592d5832 100644
--- a/include/Support/Statistic.h
+++ b/include/Support/Statistic.h
@@ -26,6 +26,8 @@
#include <iosfwd>
+namespace llvm {
+
// StatisticBase - Nontemplated base class for Statistic<> class...
class StatisticBase {
const char *Name;
@@ -78,4 +80,6 @@ public:
const Statistic &operator-=(const DataType &V) { Value -= V; return *this; }
};
+} // End llvm namespace
+
#endif