diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-12-19 17:50:07 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-12-19 17:50:07 +0000 |
commit | 7177dee8aee4b432911c91f1b788963bec0cac9f (patch) | |
tree | 553b3cf9c42274851c54069b664a9e87190b812e /lib/CodeGen/CGRTTI.cpp | |
parent | db0ee1da16e9dbec19b144c9cd96ee9f55fe0c53 (diff) |
Remove ';' after method definition. Noticed by clang++, which one would think
would have a higher respect for its own code. This is getting old, is this
warning really adding value?
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@91779 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGRTTI.cpp')
-rw-r--r-- | lib/CodeGen/CGRTTI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CGRTTI.cpp b/lib/CodeGen/CGRTTI.cpp index b9255b58cd..a5d6a7ff5e 100644 --- a/lib/CodeGen/CGRTTI.cpp +++ b/lib/CodeGen/CGRTTI.cpp @@ -115,7 +115,7 @@ public: if (Hidden) GV->setVisibility(llvm::GlobalVariable::HiddenVisibility); return llvm::ConstantExpr::getBitCast(GV, Int8PtrTy); - }; + } /// - BuildFlags - Build a psABI __flags value for __vmi_class_type_info. llvm::Constant *BuildFlags(int f) { |