only use skipping if >= boost 1.47 - corrects #1209 (refs #1210)

This commit is contained in:
Dane Springmeyer 2012-05-15 10:35:04 -07:00
parent 3d89e4001a
commit 8f79641383

View file

@ -50,7 +50,7 @@ struct image_filter_grammar :
using phoenix::push_back;
using phoenix::construct;
#if BOOST_VERSION > 104600
#if BOOST_VERSION >= 104700
using qi::no_skip;
start = -(filter % no_skip[*char_("; ")])
;