Drop unnecessary ';' after namespace
authorTobias Grosser <tobias@grosser.es>
Tue, 19 May 2015 06:25:19 +0000 (06:25 +0000)
committerTobias Grosser <tobias@grosser.es>
Tue, 19 May 2015 06:25:19 +0000 (06:25 +0000)
The ';' was introduced in 237642. With it in place, we get a large number of
warnings in -pedantic mode.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@237667 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/IR/GlobalValue.h

index 92d531f198788d53d08cafff33830ff9f8ddeead..1dfe0c28b02cb554ddda289f970804032945dbb5 100644 (file)
@@ -30,7 +30,7 @@ class Module;
 
 namespace Intrinsic {
   enum ID : unsigned;
-};
+}
 
 class GlobalValue : public Constant {
   GlobalValue(const GlobalValue &) = delete;