diff options
author | Argiris Kirtzidis <akyrtzi@gmail.com> | 2010-08-15 10:27:23 +0000 |
---|---|---|
committer | Argiris Kirtzidis <akyrtzi@gmail.com> | 2010-08-15 10:27:23 +0000 |
commit | fe9d1861007c97b2e581bb90f6c94b2c815c5cba (patch) | |
tree | f5e1cef0436b2d207e695f1aeeb169138b51513f /lib/Bitcode/Reader/BitcodeReader.cpp | |
parent | a88b05241d1ec28241c073d36101f9ed63fa4552 (diff) | |
download | external_llvm-fe9d1861007c97b2e581bb90f6c94b2c815c5cba.zip external_llvm-fe9d1861007c97b2e581bb90f6c94b2c815c5cba.tar.gz external_llvm-fe9d1861007c97b2e581bb90f6c94b2c815c5cba.tar.bz2 |
Revert r111082. No warnings for this common pattern.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111102 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bitcode/Reader/BitcodeReader.cpp')
-rw-r--r-- | lib/Bitcode/Reader/BitcodeReader.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Bitcode/Reader/BitcodeReader.cpp b/lib/Bitcode/Reader/BitcodeReader.cpp index be2c1ce..8f999a6 100644 --- a/lib/Bitcode/Reader/BitcodeReader.cpp +++ b/lib/Bitcode/Reader/BitcodeReader.cpp @@ -135,8 +135,8 @@ namespace { /// @brief A class for maintaining the slot number definition /// as a placeholder for the actual definition for forward constants defs. class ConstantPlaceHolder : public ConstantExpr { - ConstantPlaceHolder() ATTRIBUTE_UNUSED; // DO NOT IMPLEMENT - void operator=(const ConstantPlaceHolder &) ATTRIBUTE_UNUSED;//NOT IMPLEMENT + ConstantPlaceHolder(); // DO NOT IMPLEMENT + void operator=(const ConstantPlaceHolder &); // DO NOT IMPLEMENT public: // allocate space for exactly one operand void *operator new(size_t s) { |