Fix an error on GCC 4.8.5 where -Werror=unused-parameter fails (#9145)

This commit is contained in:
Adam Retter 2021-11-16 19:27:45 +00:00 committed by GitHub
parent 7448618ac8
commit 9674b843c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -135,7 +135,7 @@ struct FileOptions : EnvOptions {
temperature(opts.temperature),
handoff_checksum_type(opts.handoff_checksum_type) {}
FileOptions& operator=(const FileOptions& opts) = default;
FileOptions& operator=(const FileOptions&) = default;
};
// A structure to pass back some debugging information from the FileSystem