]> granicus.if.org Git - clang/commitdiff
Remove unused field from FixItRecompile.
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>
Sat, 4 Feb 2012 04:53:03 +0000 (04:53 +0000)
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>
Sat, 4 Feb 2012 04:53:03 +0000 (04:53 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@149762 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Rewrite/FrontendActions.h

index 35a37ee6509c0b2da4e7d6fe4b4909f79c9d563f..03dbd0426599074fd3a0be7bfc291c2574feca96 100644 (file)
@@ -49,10 +49,9 @@ public:
 /// \brief Emits changes to temporary files and uses them for the original
 /// frontend action.
 class FixItRecompile : public WrapperFrontendAction {
-  FrontendAction *WrappedAction;
 public:
   FixItRecompile(FrontendAction *WrappedAction)
-    : WrapperFrontendAction(WrappedAction), WrappedAction(WrappedAction) {}
+    : WrapperFrontendAction(WrappedAction) {}
 
 protected:
   virtual bool BeginInvocation(CompilerInstance &CI);