We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bae5b2 commit bb816d1Copy full SHA for bb816d1
com.googlecode.cppcheclipse.ui/src/com/googlecode/cppcheclipse/ui/ToolchainSettings.java
@@ -25,6 +25,7 @@
25
import com.googlecode.cppcheclipse.core.IToolchainSettings;
26
import com.googlecode.cppcheclipse.core.Symbol;
27
28
+
29
/**
30
* Getting some settings done in the toolchain of CDT
31
*
@@ -136,7 +137,7 @@ protected Collection<File> resolveIncludePath(File includePath)
136
137
// if we could resolve the file
138
if (files.length > 0) {
139
for (IFile file : files) {
- result.add(new File(file.getRawLocationURI()));
140
+ result.add(new File(file.getLocationURI()));
141
}
142
} else {
143
// otherwise just take the whole file
0 commit comments