1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-21 21:52:10 +02:00

Bug 559957 - Headers are not getting resolved in Windows OS

Change-Id: I933521a9001824024377205096a56471ce150aa9
Signed-off-by: Kondal Kolipaka <kondal.kolipaka@gmail.com>
This commit is contained in:
Kondal Kolipaka 2020-02-10 10:24:28 +05:30 committed by Jonah Graham
parent a41ea21383
commit 187d88443d

View file

@ -839,7 +839,7 @@ public abstract class CBuildConfiguration extends PlatformObject implements ICBu
* @return List of arg Strings * @return List of arg Strings
*/ */
private List<String> stripArgs(String argString) { private List<String> stripArgs(String argString) {
String[] args = CommandLineUtil.argumentsToArrayUnixStyle(argString); String[] args = CommandLineUtil.argumentsToArray(argString);
return new ArrayList<>(Arrays.asList(args)); return new ArrayList<>(Arrays.asList(args));
} }