Skip to content
This repository has been archived by the owner on Apr 28, 2022. It is now read-only.

Commit

Permalink
Fix MinGW build
Browse files Browse the repository at this point in the history
  • Loading branch information
ruslo committed Nov 11, 2017
1 parent abf1599 commit 1ff98f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/gauze/directory/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ int gauze_main(int argc, char** argv) {
file_path /= file_name.str();

std::cout << "Processing file: " << file_path << std::endl;
std::ifstream file(file_path.c_str());
std::ifstream file(file_path.string());

std::string content;
std::getline(file, content);
Expand Down

0 comments on commit 1ff98f4

Please sign in to comment.