]> granicus.if.org Git - clang/commitdiff
Added extra "constness" to parameter.
authorTed Kremenek <kremenek@apple.com>
Tue, 25 Sep 2007 04:30:51 +0000 (04:30 +0000)
committerTed Kremenek <kremenek@apple.com>
Tue, 25 Sep 2007 04:30:51 +0000 (04:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42292 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Analysis/UninitializedValues.h

index 8cfa29efc0323ce1d5b9372bc1e18ee04c0f1896..68bac26c9a94ddee4ccf1e0b5f05767b7340f621 100644 (file)
@@ -78,7 +78,7 @@ public:
       return DeclBV == RHS.DeclBV && ExprBV == RHS.ExprBV; 
     }
     
-    void copyValues(ValTy& RHS) {
+    void copyValues(const ValTy& RHS) {
       DeclBV = RHS.DeclBV;
       ExprBV = RHS.ExprBV;
     }