diff options
Diffstat (limited to 'lib/CodeGen/CGVtable.cpp')
-rw-r--r-- | lib/CodeGen/CGVtable.cpp | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/lib/CodeGen/CGVtable.cpp b/lib/CodeGen/CGVtable.cpp index edcd14c96e..e6b63836f8 100644 --- a/lib/CodeGen/CGVtable.cpp +++ b/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; }; |