parent
253f2c9e9d
commit
f26b15e5b5
|
@ -349,17 +349,14 @@ void ImportProject::importCompileCommands(std::istream &istr)
|
|||
comm << arg.get< std::string >() << " ";
|
||||
}
|
||||
}
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
return;
|
||||
}
|
||||
}
|
||||
else if( obj.find( "command" ) != obj.end() ) {
|
||||
} else if (obj.find("command") != obj.end()) {
|
||||
if (obj[ "command" ].is< std::string >()) {
|
||||
comm << obj[ "command" ].get< std::string >();
|
||||
}
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue