mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
[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:
@@ -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),
|
||||
|
||||
Reference in New Issue
Block a user