I'd like to define a static constexpr
data member in a class, like
class my_protocol
{
public:
static constexpr auto comm_timeout = 50ms;
...
};
Is there a good way to avoid the using namespace std::literals::chrono_literals;
at global scope in the header file that defines this class?