2
0
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:
Zach Laine
2025-03-13 19:03:14 -05:00
parent 78bc141d5f
commit 6414f99e04

View File

@@ -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...});