1 --- misc/boost_1_44_0/boost/spirit/home/classic/core/non_terminal/impl/grammar.ipp
2 +++ misc/build/boost_1_44_0/boost/spirit/home/classic/core/non_terminal/impl/grammar.ipp
4 #if !defined(BOOST_SPIRIT_SINGLE_GRAMMAR_INSTANCE)
5 typedef impl::grammar_helper_base<GrammarT> helper_base_t;
6 typedef grammar_helper_list<GrammarT> helper_list_t;
7 - typedef typename helper_list_t::vector_t::reverse_iterator iterator_t;
9 helper_list_t& helpers =
10 # if !defined(__GNUC__) || (__GNUC__ > 2)
13 # if (defined(BOOST_MSVC) && (BOOST_MSVC < 1300)) \
14 || defined(BOOST_INTEL_CXX_VERSION)
15 + typedef typename helper_list_t::vector_t::reverse_iterator iterator_t;
16 for (iterator_t i = helpers.rbegin(); i != helpers.rend(); ++i)
19 --- misc/boost_1_44_0/boost/spirit/home/classic/core/primitives/primitives.hpp
20 +++ misc/build/boost_1_44_0/boost/spirit/home/classic/core/primitives/primitives.hpp
22 typename parser_result<self_t, ScannerT>::type
23 parse(ScannerT const& scan) const
25 - typedef typename parser_result<self_t, ScannerT>::type result_t;
26 typedef typename ScannerT::value_t value_t;
27 typedef typename ScannerT::iterator_t iterator_t;
29 --- misc/boost_1_44_0/boost/spirit/home/classic/error_handling/exceptions.hpp
30 +++ misc/build/boost_1_44_0/boost/spirit/home/classic/error_handling/exceptions.hpp
32 parse(ScannerT const& scan) const
34 typedef typename parser_result<ParserT, ScannerT>::type result_t;
35 - typedef typename ScannerT::iterator_t iterator_t;
37 result_t hit = this->subject().parse(scan);
39 --- misc/boost_1_44_0/boost/spirit/home/classic/utility/functor_parser.hpp
40 +++ misc/build/boost_1_44_0/boost/spirit/home/classic/utility/functor_parser.hpp
42 typename parser_result<self_t, ScannerT>::type
43 parse(ScannerT const& scan) const
45 - typedef typename parser_result<self_t, ScannerT>::type result_t;
46 - typedef typename ScannerT::value_t value_t;
47 typedef typename ScannerT::iterator_t iterator_t;
49 iterator_t const s(scan.first);