We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
auto
1 parent 2b93b68 commit b7f93e3Copy full SHA for b7f93e3
src/create.cpp
@@ -206,7 +206,7 @@ fs::path create_directory(std::string_view label) {
206
validate_label(label); // throws std::invalid_argument with a proper text
207
208
std::error_code ec;
209
- auto directory = create_directory(label, ec);
+ fs::path directory = create_directory(label, ec);
210
211
if (ec) {
212
throw fs::filesystem_error("Cannot create a temporary directory", ec);
0 commit comments