]> granicus.if.org Git - clang/commitdiff
Remove unused struct fields.
authorAnders Carlsson <andersca@mac.com>
Thu, 3 Dec 2009 02:34:59 +0000 (02:34 +0000)
committerAnders Carlsson <andersca@mac.com>
Thu, 3 Dec 2009 02:34:59 +0000 (02:34 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@90397 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CGVtable.cpp

index edcd14c96e29a7aa7d7556327ea4ab7fefcacf46..e6b63836f8b2a7061e6ca83c14b843e63b0ba2ab 100644 (file)
@@ -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;
   };