We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac1d02a commit c4dabceCopy full SHA for c4dabce
inst/include/cpp11/R.hpp
@@ -51,7 +51,7 @@
51
namespace cpp11 {
52
namespace literals {
53
54
-constexpr R_xlen_t operator"" _xl(unsigned long long int value) { return value; }
+constexpr R_xlen_t operator""_xl(unsigned long long int value) { return value; }
55
56
} // namespace literals
57
inst/include/cpp11/named_arg.hpp
@@ -41,7 +41,7 @@ class named_arg {
41
42
43
44
-inline named_arg operator"" _nm(const char* name, std::size_t) { return named_arg(name); }
+inline named_arg operator""_nm(const char* name, std::size_t) { return named_arg(name); }
45
46
47
0 commit comments