Make `Property<string>` convertible to `string_view`
This should work:
void f(std::string_view);
Gaudi::Property<std::string> prop{"abc"};
f(prop);
today we have to use f(prop.value())
.
This should work:
void f(std::string_view);
Gaudi::Property<std::string> prop{"abc"};
f(prop);
today we have to use f(prop.value())
.