Skip to content

Commit

Permalink
Fix windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafael Guglielmetti committed Oct 29, 2020
1 parent 334031c commit 1e67c3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/storage/io_config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ std::vector<std::string> IOConfig::GetMissingFiles() const
std::vector<std::string> missingFiles;
for (auto &fileName : required_input_files)
{
if (!boost::filesystem::is_regular_file({base_path.string() + fileName.string()}))
if (!boost::filesystem::is_regular_file(boost::filesystem::path(base_path.string() + fileName.string())))
{
missingFiles.push_back(base_path.string() + fileName.string());
}
Expand Down

0 comments on commit 1e67c3b

Please sign in to comment.