Skip to content
This repository has been archived by the owner on Apr 5, 2024. It is now read-only.

Commit

Permalink
Bug fix #80. Fixed issue with URI is not absolute.
Browse files Browse the repository at this point in the history
  • Loading branch information
sakoPO committed Apr 10, 2018
1 parent 7bae5b2 commit bb816d1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
import com.googlecode.cppcheclipse.core.IToolchainSettings;
import com.googlecode.cppcheclipse.core.Symbol;


/**
* Getting some settings done in the toolchain of CDT
*
Expand Down Expand Up @@ -136,7 +137,7 @@ protected Collection<File> resolveIncludePath(File includePath)
// if we could resolve the file
if (files.length > 0) {
for (IFile file : files) {
result.add(new File(file.getRawLocationURI()));
result.add(new File(file.getLocationURI()));
}
} else {
// otherwise just take the whole file
Expand Down

0 comments on commit bb816d1

Please sign in to comment.