Changes between Initial Version and Version 1 of Ticket #10193, comment 5
- Timestamp:
- Aug 11, 2014, 8:52:36 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #10193, comment 5
initial v1 1 Sorry, you are right. OK, the problem is with the docs, not the implementation. The correct grammar according to the http://en.cppreference.com/w/cpp/language/floating_literal is1 Sorry, you are right. OK, let me try again... 2 2 3 (lit('e') | 'E') >> -(sign >> +digit)4 5 Seems there's a problem with grouping there.6 7 The second one consists of the following parts:8 nonempty sequence of decimal digits (defines significant)9 e or E followed with optional minus or plus sign and nonempty sequence of decimal digits (defines exponent)10 11 Are we in agreement?