1
0
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:
Niels Lohmann
2020-05-15 22:38:18 +02:00
parent daf2d296dd
commit a452e8a0a1
2 changed files with 6 additions and 2 deletions

View File

@ -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)