Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make [std::operator""s] visible in a namespace?

#include <chrono>

namespace X
{
using namespace std;
struct A
{
    std::chrono::seconds d = 0s; // ok
};
}

namespace Y
{
struct B
{
    std::chrono::seconds d = 0s; // error
};
}

The error message is:

error : no matching literal operator for call to 'operator""s' with argument of type 'unsigned long long' or 'const char *', and no matching literal operator template std::chrono::seconds d = 0s;

My question is:

I don't want to use namespace std; in namespace Y; then, how should I make std::operator""s visible in namespace Y?

like image 587
xmllmx Avatar asked Jan 03 '17 13:01

xmllmx


2 Answers

If you want to have all the chrono literals then you can use

using namespace std::chrono_literals;

If you just want operator""s then you can use

using std::chrono_literals::operator""s;

Do note that at least on coliru gcc issues a warning for the above line but clang does not. To me there should be no warning. I have asked a follow up question about this at Should a using command issue a warning when using a reserved identifier?

like image 83
NathanOliver Avatar answered Sep 27 '22 19:09

NathanOliver


tl;dr: Use

using namespace std::string_literals

These operators are declared in the namespace std::literals::string_literals, where both literals and string_literals are inline namespaces. Access to these operators can be gained with using namespace std::literals, using namespace std::string_literals, and using namespace std::literals::string_literals.

Source: https://en.cppreference.com/w/cpp/string/basic_string/operator%22%22s

like image 43
Marin Shalamanov Avatar answered Sep 27 '22 17:09

Marin Shalamanov