Opened 19 years ago

Closed 15 years ago

#241 closed Bugs (wontfix)

Miss " = ParserT()"

Reported by: nobody Owned by: Joel de Guzman
Milestone: Component: spirit
Version: None Severity: Problem
Keywords: Cc:

Description

\boost\spirit\core\scanner\skipper.hpp

101 skip_parser_iteration_policy(
102     ParserT const& skip_parser,
103     base_t const& base = base_t())
104 : base_t(base), subject(skip_parser) {}

"no_node_d" can't be used.

Fixed:
101 skip_parser_iteration_policy(
102     ParserT const& skip_parser = ParserT(),
103     base_t const& base = base_t())
104 : base_t(base), subject(skip_parser) {}

All right!

Change History (2)

comment:1 by Daryle Walker, 15 years ago

Component: Nonespirit
Severity: Problem

comment:2 by Joel de Guzman, 15 years ago

Resolution: Nonewontfix
Status: assignedclosed

There's not enough context and information to justify the fix.

Note: See TracTickets for help on using tickets.