diff options
| author | David Blaikie <dblaikie@gmail.com> | 2015-03-03 19:29:13 +0000 |
|---|---|---|
| committer | David Blaikie <dblaikie@gmail.com> | 2015-03-03 19:29:13 +0000 |
| commit | 3bf8b304fc48e8563d934e116d302e74874a63b6 (patch) | |
| tree | dc845a3d78befdc9e6e2fd59e6a7a11966053815 | |
| parent | 8f655ef0415338b341602c144c0c8b1c471d2e81 (diff) | |
| download | bcm5719-llvm-3bf8b304fc48e8563d934e116d302e74874a63b6.tar.gz bcm5719-llvm-3bf8b304fc48e8563d934e116d302e74874a63b6.zip | |
Remove explicit copy assignment operator in favor of the implicit/default to avoid disabling/deprecating the implicit copy ctor.
llvm-svn: 231109
| -rw-r--r-- | llvm/include/llvm/Analysis/AliasSetTracker.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/include/llvm/Analysis/AliasSetTracker.h b/llvm/include/llvm/Analysis/AliasSetTracker.h index afa7e6fd77f..fc45903042f 100644 --- a/llvm/include/llvm/Analysis/AliasSetTracker.h +++ b/llvm/include/llvm/Analysis/AliasSetTracker.h @@ -192,11 +192,6 @@ public: } bool operator!=(const iterator& x) const { return !operator==(x); } - const iterator &operator=(const iterator &I) { - CurNode = I.CurNode; - return *this; - } - value_type &operator*() const { assert(CurNode && "Dereferencing AliasSet.end()!"); return *CurNode; |

