Skip to content

Commit b7f93e3

Browse files
committed
Remove auto usage
1 parent 2b93b68 commit b7f93e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/create.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ fs::path create_directory(std::string_view label) {
206206
validate_label(label); // throws std::invalid_argument with a proper text
207207

208208
std::error_code ec;
209-
auto directory = create_directory(label, ec);
209+
fs::path directory = create_directory(label, ec);
210210

211211
if (ec) {
212212
throw fs::filesystem_error("Cannot create a temporary directory", ec);

0 commit comments

Comments
 (0)