You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I faced the following compile error, when including the #include <nlohmann/json.hpp>
I boiled it down to the [std::enable_if](https://en.cppreference.com/w/cpp/types/enable_if) compiler conditional, but I couldn't figure out the real fix, see bool operator==(const IterImpl& other) const
On top of that I fixed the following compile errors where, apparently, the compiler has become more strict or couldn't match, which I created a PR for #4712
Reproduction steps
* Include nlohmann/json.hpp header
* build
Minimal code example
#include <nlohmann/json.hpp>
const auto json_object = nlohmann::json::parse(std::string());
Error messages
Invalid operands to binary expression ('iterator' (aka 'iter_impl<nlohmann::basic_json<std::map, std::vector, std::string, bool, long long, unsigned long long, double, std::allocator, nlohmann::adl_serializer, std::vector<unsigned char, std::allocator<unsigned char>>, void>>') and 'iterator' (aka 'iter_impl<nlohmann::basic_json<std::map, std::vector, std::string, bool, long long, unsigned long long, double, std::allocator, nlohmann::adl_serializer, std::vector<unsigned char, std::allocator<unsigned char>>, void>>'))
Description
platform: Macos (Sequoia, 15.3.2 (24D81)), Intel x86_64
arch: x86_64
compiler: Xcode Version 16.1 (16B40) apple-clang++
cppstd: 23
I faced the following compile error, when including the
#include <nlohmann/json.hpp>
I boiled it down to the
[std::enable_if](https://en.cppreference.com/w/cpp/types/enable_if)
compiler conditional, but I couldn't figure out the real fix, seebool operator==(const IterImpl& other) const
On top of that I fixed the following compile errors where, apparently, the compiler has become more strict or couldn't match, which I created a PR for #4712
Reproduction steps
Minimal code example
Error messages
Compiler and operating system
Macos (Sequoia, 15.3.2 (24D81)), Intel x86_64, Xcode Version 16.1 (16B40) apple-clang++
Library version
3.11.3
Validation
develop
branch is used.The text was updated successfully, but these errors were encountered: