From: Nico Weber Date: Wed, 10 Jul 2019 14:49:36 +0000 (+0000) Subject: Remove two unused member variables. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=83f76fa3a5d17a39174e9df3f97f228b0bff8305;p=clang 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.) git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@365638 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Driver/Driver.h b/include/clang/Driver/Driver.h index 244a0f3276..f952864107 100644 --- a/include/clang/Driver/Driver.h +++ b/include/clang/Driver/Driver.h @@ -235,9 +235,6 @@ private: /// Certain options suppress the 'no input files' warning. unsigned SuppressMissingInputWarning : 1; - std::list TempFiles; - std::list ResultFiles; - /// Cache of all the ToolChains in use by the driver. /// /// This maps from the string representation of a triple to a ToolChain