r198081 - Fix incorrect copy-pasted method decl that MSVC allowed.
Reid Kleckner
reid at kleckner.net
Fri Dec 27 11:45:53 PST 2013
Author: rnk
Date: Fri Dec 27 13:45:53 2013
New Revision: 198081
URL: http://llvm.org/viewvc/llvm-project?rev=198081&view=rev
Log:
Fix incorrect copy-pasted method decl that MSVC allowed.
Modified:
cfe/trunk/lib/AST/VTableBuilder.cpp
Modified: cfe/trunk/lib/AST/VTableBuilder.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/VTableBuilder.cpp?rev=198081&r1=198080&r2=198081&view=diff
==============================================================================
--- cfe/trunk/lib/AST/VTableBuilder.cpp (original)
+++ cfe/trunk/lib/AST/VTableBuilder.cpp Fri Dec 27 13:45:53 2013
@@ -2541,7 +2541,7 @@ private:
}
}
- bool VFTableBuilder::NeedsReturnAdjustingThunk(const CXXMethodDecl *MD);
+ bool NeedsReturnAdjustingThunk(const CXXMethodDecl *MD);
/// AddMethods - Add the methods of this base subobject and the relevant
/// subbases to the vftable we're currently laying out.
More information about the cfe-commits
mailing list