Skip to content

Commit

Permalink
Merge branch 'import-boost' of https://github.com/PDAL/PDAL into impo…
Browse files Browse the repository at this point in the history
…rt-boost
  • Loading branch information
hobu committed Feb 10, 2012
2 parents af4096b + a16ff96 commit 8e53724
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/plang/Parser_qi.cpp
Expand Up @@ -114,9 +114,11 @@ PlangParser::PlangParser() : PlangParser::base_type(program)
| ("0x" >> qi::hex) [ SET_1(AstConstant) ]
| (strict_float >> 'f') [ SET_1(AstConstant) ]
| strict_double [ SET_1(AstConstant) ]
#ifdef BOOST_HAS_LONG_LONG
| (qi::ulong_long >> "ul") [ SET_1(AstConstant) ]
| (qi::ulong_long >> "lu") [ SET_1(AstConstant) ]
| (qi::long_long >> 'l') [ SET_1(AstConstant) ]
#endif
| (qi::uint_ >> 'u') [ SET_1(AstConstant) ]
| qi::int_ [ SET_1(AstConstant) ]
| qi::lit("true") [ SET_P(AstConstant, true) ]
Expand Down

0 comments on commit 8e53724

Please sign in to comment.