r365638 - Remove two unused member variables.

Nico Weber via cfe-commits cfe-commits at lists.llvm.org
Wed Jul 10 07:49:36 PDT 2019


Author: nico
Date: Wed Jul 10 07:49:36 2019
New Revision: 365638

URL: http://llvm.org/viewvc/llvm-project?rev=365638&view=rev
Log:
Remove two unused member variables.

They were added over 10 years ago in r66575 and have never been used as
far as I can tell.

(r67087 added similar fields to Compilation, and those are used.)

Modified:
    cfe/trunk/include/clang/Driver/Driver.h

Modified: cfe/trunk/include/clang/Driver/Driver.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Driver/Driver.h?rev=365638&r1=365637&r2=365638&view=diff
==============================================================================
--- cfe/trunk/include/clang/Driver/Driver.h (original)
+++ cfe/trunk/include/clang/Driver/Driver.h Wed Jul 10 07:49:36 2019
@@ -235,9 +235,6 @@ private:
   /// Certain options suppress the 'no input files' warning.
   unsigned SuppressMissingInputWarning : 1;
 
-  std::list<std::string> TempFiles;
-  std::list<std::string> ResultFiles;
-
   /// Cache of all the ToolChains in use by the driver.
   ///
   /// This maps from the string representation of a triple to a ToolChain




More information about the cfe-commits mailing list