Skip to content

Commit 1e67c3b

Browse files
author
Rafael Guglielmetti
committed
Fix windows build
1 parent 334031c commit 1e67c3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/storage/io_config.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ std::vector<std::string> IOConfig::GetMissingFiles() const
3232
std::vector<std::string> missingFiles;
3333
for (auto &fileName : required_input_files)
3434
{
35-
if (!boost::filesystem::is_regular_file({base_path.string() + fileName.string()}))
35+
if (!boost::filesystem::is_regular_file(boost::filesystem::path(base_path.string() + fileName.string())))
3636
{
3737
missingFiles.push_back(base_path.string() + fileName.string());
3838
}

0 commit comments

Comments
 (0)