[Driver] Remove an unused accessor.

No one should be accessing the raw input argument list; it's there merely
to keep the info about the derived argument list alive.
This commit is contained in:
Jordan Rose
2016-01-12 13:54:34 -08:00
parent 7552d49c4a
commit 7be3effeed
2 changed files with 5 additions and 3 deletions

View File

@@ -49,7 +49,7 @@ Compilation::Compilation(DiagnosticEngine &Diags, OutputLevel Level,
bool EnableIncrementalBuild,
bool SkipTaskExecution,
bool SaveTemps)
: Diags(Diags), Level(Level), InputArgs(std::move(InputArgs)),
: Diags(Diags), Level(Level), RawInputArgs(std::move(InputArgs)),
TranslatedArgs(std::move(TranslatedArgs)),
InputFilesWithTypes(std::move(InputsWithTypes)), ArgsHash(ArgsHash),
BuildStartTime(StartTime),