[analyzer] Remove redundant copy constructor.

llvm-svn: 139704
This commit is contained in:
Anna Zaks 2011-09-14 17:53:23 +00:00
parent 615e3a69c3
commit 2ced26ef72
1 changed files with 0 additions and 9 deletions

View File

@ -120,15 +120,6 @@ public:
return !(*this == X);
}
PathDiagnosticLocation& operator=(const PathDiagnosticLocation &X) {
K = X.K;
R = X.R;
S = X.S;
D = X.D;
SM = X.SM;
return *this;
}
bool isValid() const {
return SM != 0;
}