diff options
Diffstat (limited to 'src/clparser.cc')
-rw-r--r-- | src/clparser.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/clparser.cc b/src/clparser.cc index 275641e..40e9407 100644 --- a/src/clparser.cc +++ b/src/clparser.cc @@ -103,8 +103,7 @@ bool CLParser::Parse(const string& output, const string& deps_prefix, // TODO: should this make the path relative to cwd? normalized = include; uint64_t slash_bits; - if (!CanonicalizePath(&normalized, &slash_bits, err)) - return false; + CanonicalizePath(&normalized, &slash_bits); #endif if (!IsSystemInclude(normalized)) includes_.insert(normalized); |