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 23a5b8fd3c
commit fb695bc55f
2 changed files with 0 additions and 8 deletions

View File

@ -100,10 +100,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
gcc_pure
static bool
IsValidName(const StringView s) noexcept

View File

@ -83,10 +83,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)
{