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
So now I am back working on json - and here is the first feature request: please implement a way for TAO_JSON_BIND_REQUIRED to accept an std::string_view as its first argument so that something like this is possible:
enum class Keys {
date
};
template<typename T, typename = void>
struct my_traits
: public tao::json::traits<T>
{};
template<>
struct my_traits<test>
: public tao::json::binding::object<TAO_JSON_BIND_REQUIRED(magic_enum::enum_name(Keys::date), &test::date)>
{};
The text was updated successfully, but these errors were encountered:
So now I am back working on json - and here is the first feature request: please implement a way for
TAO_JSON_BIND_REQUIRED
to accept anstd::string_view
as its first argument so that something like this is possible:The text was updated successfully, but these errors were encountered: