Skip to content

Commit f9ce946

Browse files
authored
Remove space from user defined string literal (#1092)
1 parent 654aa5a commit f9ce946

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/nanobind/nb_types.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ class bytes : public object {
452452
};
453453

454454
NAMESPACE_BEGIN(literals)
455-
inline str operator"" _s(const char *s, size_t n) {
455+
inline str operator""_s(const char *s, size_t n) {
456456
return str(s, n);
457457
}
458458
NAMESPACE_END(literals)

0 commit comments

Comments
 (0)