summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--clang/lib/CodeGen/CGVtable.cpp9
1 files changed, 2 insertions, 7 deletions
diff --git a/clang/lib/CodeGen/CGVtable.cpp b/clang/lib/CodeGen/CGVtable.cpp
index edcd14c96e2..e6b63836f8b 100644
--- a/clang/lib/CodeGen/CGVtable.cpp
+++ b/clang/lib/CodeGen/CGVtable.cpp
@@ -80,16 +80,11 @@ private:
struct CovariantThunk {
CovariantThunk() { }
- CovariantThunk(GlobalDecl GD, const ThunkAdjustment &ReturnAdjustment,
- CanQualType ReturnType)
- : GD(GD), ReturnAdjustment(ReturnAdjustment),
- ReturnType(ReturnType) { }
+ CovariantThunk(GlobalDecl GD, CanQualType ReturnType)
+ : GD(GD), ReturnType(ReturnType) { }
GlobalDecl GD;
- /// ReturnAdjustment - The covariant thunk return adjustment.
- ThunkAdjustment ReturnAdjustment;
-
/// ReturnType - The return type of the function.
CanQualType ReturnType;
};
OpenPOWER on IntegriCloud