
12 Apr
2025
12 Apr
'25
8:23 a.m.
---------- Původní e-mail ---------- Od: kila suelika via Boost-users <boost-users@lists.boost.org>" ``` #include <boost/parser/parser.hpp> #include <iostream> #include <string> #include <variant> namespace bp = boost::parser; auto numeric_parser = bp::int_ | bp::double_; " auto numeric_parser = (bp::int_ >> bp::eoi) | bp::double_; ...does what you probably expected. Cheers, Filip " "