From: Tobias Grosser Date: Tue, 19 May 2015 06:25:19 +0000 (+0000) Subject: Drop unnecessary ';' after namespace X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=d70b3aca8e69e52f5683c2c0f351722482f5929f;p=oota-llvm.git Drop unnecessary ';' after namespace 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 --- diff --git a/include/llvm/IR/GlobalValue.h b/include/llvm/IR/GlobalValue.h index 92d531f1987..1dfe0c28b02 100644 --- a/include/llvm/IR/GlobalValue.h +++ b/include/llvm/IR/GlobalValue.h @@ -30,7 +30,7 @@ class Module; namespace Intrinsic { enum ID : unsigned; -}; +} class GlobalValue : public Constant { GlobalValue(const GlobalValue &) = delete;