From d70b3aca8e69e52f5683c2c0f351722482f5929f Mon Sep 17 00:00:00 2001 From: Tobias Grosser Date: Tue, 19 May 2015 06:25:19 +0000 Subject: [PATCH] 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 --- include/llvm/IR/GlobalValue.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.34.1