Fixed an ambiguous call to nbt::make_unique in nbt::tag_list::init. This call was ambiguous due to ADL (std::string argument) and the existence of std::make_unique when building with a C++14-conforming library.
Removed the name from the second parameter to the constructor of nbt::text::json_fmt_visitor in src/text/json_formatter.cpp to eliminate a GCC warning about an unused parameter (-Wunused-parameter which comes as part of -Wextra).
Fixed an ambiguous call to
nbt::make_unique
innbt::tag_list::init
. This call was ambiguous due to ADL (std::string
argument) and the existence ofstd::make_unique
when building with a C++14-conforming library.Removed the name from the second parameter to the constructor of
nbt::text::json_fmt_visitor
insrc/text/json_formatter.cpp
to eliminate a GCC warning about an unused parameter (-Wunused-parameter
which comes as part of-Wextra
).