diff --git a/include/util/json_container.hpp b/include/util/json_container.hpp index 812581499..699776c50 100644 --- a/include/util/json_container.hpp +++ b/include/util/json_container.hpp @@ -53,7 +53,7 @@ struct Array; // For encoding raw binary data in a JSON response struct Buffer { - Buffer() {} + Buffer() = default; Buffer(const char *value) : value(value) {} Buffer(std::string value) : value(std::move(value)) {} std::string value;