Skip to content

Commit

Permalink
Using the correct cpr filesystem include
Browse files Browse the repository at this point in the history
  • Loading branch information
COM8 committed Apr 10, 2024
1 parent bacb197 commit 99c75cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpr/session.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -931,7 +931,7 @@ void Session::prepareBodyPayloadOrMultipart() const {
curl_mime_filename(mimePart, file.overriden_filename.c_str());
} else {
// NOLINTNEXTLINE (misc-include-cleaner)
curl_mime_filename(mimePart, std::filesystem::path(file.filepath).filename().c_str());
curl_mime_filename(mimePart, fs::path(file.filepath).filename().c_str());
}
}
} else {
Expand Down

0 comments on commit 99c75cd

Please sign in to comment.