[llvm-branch-commits] [llvm-branch] r134469 - /llvm/branches/type-system-rewrite/include/llvm/Transforms/Utils/ValueMapper.h
Chris Lattner
sabre at nondot.org
Tue Jul 5 23:05:23 PDT 2011
Author: lattner
Date: Wed Jul 6 01:05:23 2011
New Revision: 134469
URL: http://llvm.org/viewvc/llvm-project?rev=134469&view=rev
Log:
add a missing dtor I forgot to commit.
Modified:
llvm/branches/type-system-rewrite/include/llvm/Transforms/Utils/ValueMapper.h
Modified: llvm/branches/type-system-rewrite/include/llvm/Transforms/Utils/ValueMapper.h
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/type-system-rewrite/include/llvm/Transforms/Utils/ValueMapper.h?rev=134469&r1=134468&r2=134469&view=diff
==============================================================================
--- llvm/branches/type-system-rewrite/include/llvm/Transforms/Utils/ValueMapper.h (original)
+++ llvm/branches/type-system-rewrite/include/llvm/Transforms/Utils/ValueMapper.h Wed Jul 6 01:05:23 2011
@@ -27,7 +27,7 @@
class ValueMapTypeRemapper {
virtual void Anchor(); // Out of line method.
public:
- ~ValueMapTypeRemapper();
+ ~ValueMapTypeRemapper() {}
/// remapType - The client should implement this method if they want to
/// remap types while mapping values.
More information about the llvm-branch-commits
mailing list