Skip to content

Commit

Permalink
skipping string constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
Felix Faber committed Apr 19, 2024
1 parent 6a066cd commit d1d4697
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/importproject.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ ImportProject::Type ImportProject::import(const std::string &filename, Settings
if (!mPath.empty() && !endsWith(mPath,'/'))
mPath += '/';
if (mPath.empty())
mPath = std::string("./");
mPath = "./";

const std::vector<std::string> fileFilters =
settings ? settings->fileFilters : std::vector<std::string>();
Expand Down

0 comments on commit d1d4697

Please sign in to comment.