diff options
author | David Blaikie <dblaikie@gmail.com> | 2015-03-03 21:18:16 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2015-03-03 21:18:16 +0000 |
commit | 7f1e0565b32db8b0b82f78e680718a9703445bc8 (patch) | |
tree | b817eb96d434fc174e04981179182da7de2b91a1 /llvm/tools/llvm-diff/DiffLog.h | |
parent | bb8da4c08fbe6380195c61d134b149a4f4ade037 (diff) | |
download | bcm5719-llvm-7f1e0565b32db8b0b82f78e680718a9703445bc8.tar.gz bcm5719-llvm-7f1e0565b32db8b0b82f78e680718a9703445bc8.zip |
Revert "Remove the explicit SDNodeIterator::operator= in favor of the implicit default"
Accidentally committed a few more of these cleanup changes than
intended. Still breaking these out & tidying them up.
This reverts commit r231135.
llvm-svn: 231136
Diffstat (limited to 'llvm/tools/llvm-diff/DiffLog.h')
-rw-r--r-- | llvm/tools/llvm-diff/DiffLog.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/tools/llvm-diff/DiffLog.h b/llvm/tools/llvm-diff/DiffLog.h index cfdeec89d9e..8eb53ffffcc 100644 --- a/llvm/tools/llvm-diff/DiffLog.h +++ b/llvm/tools/llvm-diff/DiffLog.h @@ -40,8 +40,6 @@ namespace llvm { public: LogBuilder(Consumer &c, StringRef Format) : consumer(c), Format(Format) {} - // Relying on RVO, not actually copyable. - LogBuilder(const LogBuilder&); LogBuilder &operator<<(Value *V) { Arguments.push_back(V); |