mirror of
https://github.com/boostorg/parser.git
synced 2026-01-19 04:22:13 +00:00
Remove space from declaration of UDLs, because apparently it matters?!
Fixes #216.
This commit is contained in:
@@ -128,7 +128,7 @@ namespace boost { namespace parser {
|
||||
/** A literal that can be used to concisely name `parser::llong`
|
||||
integral constants. */
|
||||
template<char... chars>
|
||||
constexpr auto operator"" _c()
|
||||
constexpr auto operator""_c()
|
||||
{
|
||||
constexpr long long n =
|
||||
detail::parse_llong<sizeof...(chars)>({chars...});
|
||||
|
||||
Reference in New Issue
Block a user