From f3892e43005f0924df87a2fc02cd6bcdabfbac8a Mon Sep 17 00:00:00 2001 From: Tim Blechmann Date: Sat, 19 Apr 2008 00:09:01 +0200 Subject: [PATCH] boost.wave gcc-4.3 fix --- boost/wave/util/macro_helpers.hpp | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/boost/wave/util/macro_helpers.hpp b/boost/wave/util/macro_helpers.hpp index 60fdac3..430a1f6 100644 --- a/boost/wave/util/macro_helpers.hpp +++ b/boost/wave/util/macro_helpers.hpp @@ -17,6 +17,7 @@ #include #include #include +#include // this must occur after all of the includes and before any code appears #ifdef BOOST_HAS_ABI_HEADERS @@ -259,7 +260,7 @@ namespace impl { inline boost::wave::token_id skip_whitespace(IteratorT &first, IteratorT const &last) { - token_id id = next_token::peek(first, last, false); + token_id id = boost::wave::util::impl::next_token::peek(first, last, false); if (IS_CATEGORY(id, WhiteSpaceTokenType)) { do { ++first; -- 1.5.4.4