Skip to content

Commit

Permalink
syntax fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sameeul committed Nov 21, 2023
1 parent de0e11b commit 031ae3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nyx/arrow_output_stream.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ namespace Nyxus {
}

this->arrow_file_path_ = output_path;
if (auto arrow_path = fs::path(output_path); !fs::is_directory(arrow_path.parent_path()){
if (auto arrow_path = fs::path(output_path); !fs::is_directory(arrow_path.parent_path())){
try {
fs::create_directory(arrow_path.parent_path());
} catch (std::exception& e) {
Expand Down

0 comments on commit 031ae3a

Please sign in to comment.