1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

Drop unnecessary ';' after namespace

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

llvm-svn: 237667
This commit is contained in:
Tobias Grosser 2015-05-19 06:25:19 +00:00
parent ed527f2f9e
commit 113a9e0d99

View File

@ -30,7 +30,7 @@ class Module;
namespace Intrinsic {
enum ID : unsigned;
};
}
class GlobalValue : public Constant {
GlobalValue(const GlobalValue &) = delete;