command/{file,storage}: remove stray "#pragma GCC diagnostic pop"

This commit is contained in:
Max Kellermann 2023-03-06 16:32:49 +01:00
parent ff239fff4f
commit 8c5ba50840
2 changed files with 0 additions and 8 deletions

View File

@ -83,10 +83,6 @@ handle_listfiles_local(Response &r, Path path_fs)
return CommandResult::OK;
}
#if defined(_WIN32) && GCC_CHECK_VERSION(4,6)
#pragma GCC diagnostic pop
#endif
[[gnu::pure]]
static bool
IsValidName(const std::string_view s) noexcept

View File

@ -66,10 +66,6 @@ handle_listfiles_storage(Response &r, StorageDirectoryReader &reader)
}
}
#if defined(_WIN32) && GCC_CHECK_VERSION(4,6)
#pragma GCC diagnostic pop
#endif
CommandResult
handle_listfiles_storage(Response &r, Storage &storage, const char *uri)
{