We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 161b707 commit f7467d5Copy full SHA for f7467d5
2 files changed
plugins/cpp/parser/src/cppparser.cpp
@@ -232,7 +232,7 @@ model::BuildActionPtr CppParser::addBuildAction(
232
233
model::BuildActionPtr buildAction(new model::BuildAction);
234
235
- auto extension = fs::path(command_.Filename).extension();
+ auto extension = fs::path(command_.Filename).extension().string();
236
237
buildAction->command = boost::algorithm::join(command_.CommandLine, " ");
238
buildAction->type
plugins/dummy/parser/src/dummyparser.cpp
@@ -17,7 +17,7 @@ DummyParser::DummyParser(ParserContext& ctx_): AbstractParser(ctx_)
17
18
bool DummyParser::accept(const std::string& path_)
19
{
20
- auto ext = boost::filesystem::path(path_).extension();
+ auto ext = boost::filesystem::path(path_).extension().string();
21
return ext == ".dummy";
22
}
23
0 commit comments