Skip to content

Commit 6414f99

Browse files
committed
Remove space from declaration of UDLs, because apparently it matters?!
Fixes #216.
1 parent 78bc141 commit 6414f99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/boost/parser/tuple.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ namespace boost { namespace parser {
128128
/** A literal that can be used to concisely name `parser::llong`
129129
integral constants. */
130130
template<char... chars>
131-
constexpr auto operator"" _c()
131+
constexpr auto operator""_c()
132132
{
133133
constexpr long long n =
134134
detail::parse_llong<sizeof...(chars)>({chars...});

0 commit comments

Comments
 (0)