I need a beer - followup to e4ae1f660d
This commit is contained in:
parent
e4ae1f660d
commit
149fca1626
1 changed files with 7 additions and 1 deletions
|
@ -49,7 +49,13 @@ bool parse_dasharray(Iterator first, Iterator last, std::vector<double>& dasharr
|
|||
// no support for 'percentage' as viewport is unknown at load_map
|
||||
//
|
||||
bool r = phrase_parse(first, last,
|
||||
(double_[push_back(phoenix::ref(dasharray), _1)] % lexeme[char_(", ")] | lit("none")),
|
||||
(double_[push_back(phoenix::ref(dasharray), _1)] %
|
||||
#if BOOST_VERSION > 104200
|
||||
no_skip[char_(", ")]
|
||||
#else
|
||||
lexeme[char_(", ")]
|
||||
#endif
|
||||
| lit("none")),
|
||||
qi::ascii::space);
|
||||
|
||||
if (first != last)
|
||||
|
|
Loading…
Add table
Reference in a new issue