Tal Kedar
Tal Kedar
Conditionally enabling the overload based on `std::ranges` availability. `__has_include` is [standard](https://en.cppreference.com/w/cpp/preprocessor/include) for c++>=17, `#include ` provides the `__cpp_lib_ranges` definition.
Cool, let me know if I can help with the modern version when you get around to it.
The newer gcc versions (11.4.0) succeed, while the older gcc versions (9.4.0 and 10.5.0) fail to compile. What is the minimum version of gcc the project aims to support? I'm...
@jmklix Thanks. Would you consider just adding an accessor for the shared pointer `AttributeValue::m_value`? This would allow interested users to circumvent the issue cleanly in their own client code; otherwise...