Skip to content

Commit c4dabce

Browse files
committed
Substance
1 parent ac1d02a commit c4dabce

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

inst/include/cpp11/R.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
namespace cpp11 {
5252
namespace literals {
5353

54-
constexpr R_xlen_t operator"" _xl(unsigned long long int value) { return value; }
54+
constexpr R_xlen_t operator""_xl(unsigned long long int value) { return value; }
5555

5656
} // namespace literals
5757

inst/include/cpp11/named_arg.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class named_arg {
4141

4242
namespace literals {
4343

44-
inline named_arg operator"" _nm(const char* name, std::size_t) { return named_arg(name); }
44+
inline named_arg operator""_nm(const char* name, std::size_t) { return named_arg(name); }
4545

4646
} // namespace literals
4747

0 commit comments

Comments
 (0)