mirror of
https://github.com/nlohmann/json.git
synced 2025-07-29 23:01:16 +03:00
💚 fix GCC 4.9 compilation
This commit is contained in:
@ -15597,7 +15597,9 @@ struct wrapped_binary_t : public BinaryType
|
||||
{
|
||||
using binary_t = BinaryType;
|
||||
|
||||
wrapped_binary_t() noexcept(noexcept(binary_t())) = default;
|
||||
wrapped_binary_t() noexcept(noexcept(binary_t()))
|
||||
: binary_t()
|
||||
{}
|
||||
|
||||
wrapped_binary_t(const binary_t& bint) noexcept(noexcept(binary_t(bint)))
|
||||
: binary_t(bint)
|
||||
|
Reference in New Issue
Block a user