We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 534c814 commit eaf29dbCopy full SHA for eaf29db
cpp/arcticdb/storage/s3/s3_client_interface.hpp
@@ -58,6 +58,10 @@ struct ListObjectsOutput{
58
struct FailedDelete{
59
std::string s3_object_name;
60
std::string error_message;
61
+
62
+ // Required because Apple Clang doesn't support aggregate initialization.
63
+ FailedDelete(const std::string& name, const std::string& message)
64
+ : s3_object_name(name), error_message(message) {}
65
};
66
67
struct DeleteObjectsOutput{
0 commit comments