[llvm] r237667 - Drop unnecessary ';' after namespace

Tobias Grosser tobias at grosser.es
Mon May 18 23:25:19 PDT 2015


Author: grosser
Date: Tue May 19 01:25:19 2015
New Revision: 237667

URL: http://llvm.org/viewvc/llvm-project?rev=237667&view=rev
Log:
Drop unnecessary ';' after namespace

The ';' was introduced in 237642. With it in place, we get a large number of
warnings in -pedantic mode.

Modified:
    llvm/trunk/include/llvm/IR/GlobalValue.h

Modified: llvm/trunk/include/llvm/IR/GlobalValue.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/IR/GlobalValue.h?rev=237667&r1=237666&r2=237667&view=diff
==============================================================================
--- llvm/trunk/include/llvm/IR/GlobalValue.h (original)
+++ llvm/trunk/include/llvm/IR/GlobalValue.h Tue May 19 01:25:19 2015
@@ -30,7 +30,7 @@ class Module;
 
 namespace Intrinsic {
   enum ID : unsigned;
-};
+}
 
 class GlobalValue : public Constant {
   GlobalValue(const GlobalValue &) = delete;





More information about the llvm-commits mailing list