diff options
Diffstat (limited to 'clang/lib/CodeGen')
| -rw-r--r-- | clang/lib/CodeGen/CGVtable.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CGVtable.cpp b/clang/lib/CodeGen/CGVtable.cpp index df30f479acc..d11cbb4b802 100644 --- a/clang/lib/CodeGen/CGVtable.cpp +++ b/clang/lib/CodeGen/CGVtable.cpp @@ -1240,7 +1240,7 @@ private:    MethodThunksMapTy MethodThunks;    /// AddThunk - Add a thunk for the given method. -  void AddThunk(const CXXMethodDecl *MD, ThunkInfo &Thunk); +  void AddThunk(const CXXMethodDecl *MD, const ThunkInfo &Thunk);    /// ComputeThisAdjustments - Compute the 'this' pointer adjustments for the    /// part of the vtable we're currently building. @@ -1357,7 +1357,7 @@ public:    void dumpLayout(llvm::raw_ostream&);  }; -void VtableBuilder::AddThunk(const CXXMethodDecl *MD, ThunkInfo &Thunk) { +void VtableBuilder::AddThunk(const CXXMethodDecl *MD, const ThunkInfo &Thunk) {    if (isBuildingConstructorVtable())      return;  | 

