1 diff --git boost_1_39_0/boost/config/compiler/visualc.hpp boost_1_39_0/boost/config/compiler/visualc.hpp
2 index 552e5bb..d9f90b2 100644
3 --- misc/build/boost_1_39_0/boost/config/compiler/visualc.hpp
4 +++ misc/build/boost_1_39_0/boost/config/compiler/visualc.hpp
9 +// disable WORKAROUND macro - gives warning for undefined macros
10 +#define BOOST_STRICT_CONFIG 1
13 // all versions support __declspec:
15 diff --git boost_1_39_0/boost/function/function_base.hpp boost_1_39_0/boost/function/function_base.hpp
16 index 6612fb8..35afa16 100644
17 --- misc/build/boost_1_39_0/boost/function/function_base.hpp
18 +++ misc/build/boost_1_39_0/boost/function/function_base.hpp
22 // Define BOOST_FUNCTION_STD_NS to the namespace that contains type_info.
23 -#ifdef BOOST_NO_EXCEPTION_STD_NAMESPACE
24 +#ifdef BOOST_NO_STD_TYPEINFO
25 // Embedded VC++ does not have type_info in namespace std
26 # define BOOST_FUNCTION_STD_NS
28 diff --git boost_1_39_0/boost/function/function_template.hpp boost_1_39_0/boost/function/function_template.hpp
29 index 584abe9..36b619b 100644
30 --- misc/build/boost_1_39_0/boost/function/function_template.hpp
31 +++ misc/build/boost_1_39_0/boost/function/function_template.hpp
32 @@ -950,10 +950,10 @@ namespace boost {
33 f.vtable->manager(f.functor, this->functor,
34 boost::detail::function::move_functor_tag);
36 -#if !defined(BOOST_NO_EXCEPTIONS)
40 +#if !defined(BOOST_NO_EXCEPTIONS)
44 diff --git boost_1_39_0/boost/mpl/apply_wrap.hpp boost_1_39_0/boost/mpl/apply_wrap.hpp
45 index b3cb12b..0bf8e73 100644
46 --- misc/build/boost_1_39_0/boost/mpl/apply_wrap.hpp
47 +++ misc/build/boost_1_39_0/boost/mpl/apply_wrap.hpp
48 @@ -173,8 +173,8 @@ struct BOOST_PP_CAT(apply_wrap,i_)<AUX778076_APPLY_WRAP_SPEC_PARAMS(i_, int)>
51 ///// iteration, depth == 2
53 -#elif BOOST_PP_ITERATION_DEPTH() == 2
55 +#if BOOST_PP_ITERATION_DEPTH() == 2
57 # define j_ BOOST_PP_FRAME_ITERATION(2)
59 @@ -231,4 +231,5 @@ struct BOOST_PP_CAT(apply_wrap_impl,i_)<
62 #endif // BOOST_PP_ITERATION_DEPTH()
64 #endif // BOOST_PP_IS_ITERATING
65 diff --git boost_1_39_0/boost/mpl/bind.hpp boost_1_39_0/boost/mpl/bind.hpp
66 index 5d851ef..780e260 100644
67 --- misc/build/boost_1_39_0/boost/mpl/bind.hpp
68 +++ misc/build/boost_1_39_0/boost/mpl/bind.hpp
69 @@ -531,7 +531,8 @@ struct bind_chooser<i_>
71 ///// iteration, depth == 2
73 -#elif BOOST_PP_ITERATION_DEPTH() == 2
75 +#if BOOST_PP_ITERATION_DEPTH() == 2
77 # define j_ BOOST_PP_FRAME_ITERATION(2)
78 # if !defined(BOOST_MPL_CFG_NO_UNNAMED_PLACEHOLDER_SUPPORT)
79 @@ -548,4 +549,5 @@ struct bind_chooser<i_>
82 #endif // BOOST_PP_ITERATION_DEPTH()
84 #endif // BOOST_PP_IS_ITERATING
85 diff --git boost_1_39_0/boost/ptr_container/detail/move.hpp boost_1_39_0/boost/ptr_container/detail/move.hpp
86 index bf07d5f..6b082a7 100644
87 --- misc/build/boost_1_39_0/boost/ptr_container/detail/move.hpp
88 +++ misc/build/boost_1_39_0/boost/ptr_container/detail/move.hpp
89 @@ -20,7 +20,7 @@ namespace move_ptrs {
90 template<typename Ptr>
93 - move_source(Ptr& ptr) : ptr_(ptr) {}
94 + move_source(Ptr& _ptr) : ptr_(_ptr) {}
95 Ptr& ptr() const { return ptr_; }
98 diff --git boost_1_39_0/boost/ptr_container/detail/reversible_ptr_container.hpp boost_1_39_0/boost/ptr_container/detail/reversible_ptr_container.hpp
99 index 47c3903..3ad2c5c 100644
100 --- misc/build/boost_1_39_0/boost/ptr_container/detail/reversible_ptr_container.hpp
101 +++ misc/build/boost_1_39_0/boost/ptr_container/detail/reversible_ptr_container.hpp
102 @@ -278,9 +278,9 @@ namespace ptr_container_detail
105 template< class ForwardIterator >
106 - ForwardIterator advance( ForwardIterator begin, size_type n )
107 + ForwardIterator advance( ForwardIterator _begin, size_type n )
109 - ForwardIterator iter = begin;
110 + ForwardIterator iter = _begin;
111 std::advance( iter, n );
114 diff --git boost_1_39_0/boost/ptr_container/detail/static_move_ptr.hpp boost_1_39_0/boost/ptr_container/detail/static_move_ptr.hpp
115 index ba2b9af..9e0d682 100644
116 --- misc/build/boost_1_39_0/boost/ptr_container/detail/static_move_ptr.hpp
117 +++ misc/build/boost_1_39_0/boost/ptr_container/detail/static_move_ptr.hpp
118 @@ -151,7 +151,7 @@ public:
119 deleter_const_reference get_deleter() const { return impl_.second(); }
121 template<typename TT, typename DD>
122 - void check(const static_move_ptr<TT, DD>& ptr)
123 + void check(const static_move_ptr<TT, DD>& _ptr)
125 typedef move_ptrs::is_smart_ptr_convertible<TT, T> convertible;
126 BOOST_STATIC_ASSERT(convertible::value);
127 diff --git boost_1_39_0/boost/ptr_container/exception.hpp boost_1_39_0/boost/ptr_container/exception.hpp
128 index d9a5ffe..7837fbb 100644
129 --- misc/build/boost_1_39_0/boost/ptr_container/exception.hpp
130 +++ misc/build/boost_1_39_0/boost/ptr_container/exception.hpp
131 @@ -24,7 +24,7 @@ namespace boost
135 - bad_ptr_container_operation( const char* what ) : what_( what )
136 + bad_ptr_container_operation( const char* text ) : what_( text )
139 virtual const char* what() const throw()
140 @@ -38,7 +38,7 @@ namespace boost
141 class bad_index : public bad_ptr_container_operation
144 - bad_index( const char* what ) : bad_ptr_container_operation( what )
145 + bad_index( const char* text ) : bad_ptr_container_operation( text )
149 diff --git boost_1_39_0/boost/spirit/home/classic/core/impl/match.ipp boost_1_39_0/boost/spirit/home/classic/core/impl/match.ipp
150 index 492bf4b..565fdec 100644
151 --- misc/build/boost_1_39_0/boost/spirit/home/classic/core/impl/match.ipp
152 +++ misc/build/boost_1_39_0/boost/spirit/home/classic/core/impl/match.ipp
153 @@ -19,12 +19,12 @@ BOOST_SPIRIT_CLASSIC_NAMESPACE_BEGIN
156 template <typename T>
157 - inline match<T>::match(std::size_t length)
158 - : len(length), val() {}
159 + inline match<T>::match(std::size_t _length)
160 + : len(_length), val() {}
162 template <typename T>
163 - inline match<T>::match(std::size_t length, ctor_param_t val_)
164 - : len(length), val(val_) {}
165 + inline match<T>::match(std::size_t _length, ctor_param_t val_)
166 + : len(_length), val(val_) {}
168 template <typename T>
170 @@ -66,11 +66,11 @@ BOOST_SPIRIT_CLASSIC_NAMESPACE_BEGIN
171 inline match<nil_t>::match()
174 - inline match<nil_t>::match(std::size_t length)
176 + inline match<nil_t>::match(std::size_t _length)
179 - inline match<nil_t>::match(std::size_t length, nil_t)
181 + inline match<nil_t>::match(std::size_t _length, nil_t)
185 match<nil_t>::operator!() const
186 diff --git boost_1_39_0/boost/spirit/home/classic/core/non_terminal/impl/rule.ipp boost_1_39_0/boost/spirit/home/classic/core/non_terminal/impl/rule.ipp
187 index ca51bd2..b2282fa 100644
188 --- misc/build/boost_1_39_0/boost/spirit/home/classic/core/non_terminal/impl/rule.ipp
189 +++ misc/build/boost_1_39_0/boost/spirit/home/classic/core/non_terminal/impl/rule.ipp
190 @@ -226,7 +226,7 @@ BOOST_SPIRIT_CLASSIC_NAMESPACE_BEGIN
191 template <typename ParserT, typename ScannerT, typename AttrT>
192 struct concrete_parser : abstract_parser<ScannerT, AttrT>
194 - concrete_parser(ParserT const& p) : p(p) {}
195 + concrete_parser(ParserT const& _p) : p(_p) {}
196 virtual ~concrete_parser() {}
198 virtual typename match_result<ScannerT, AttrT>::type
199 diff --git boost_1_39_0/boost/spirit/home/classic/core/non_terminal/parser_id.hpp boost_1_39_0/boost/spirit/home/classic/core/non_terminal/parser_id.hpp
200 index 2f4b986..b3809da 100644
201 --- misc/build/boost_1_39_0/boost/spirit/home/classic/core/non_terminal/parser_id.hpp
202 +++ misc/build/boost_1_39_0/boost/spirit/home/classic/core/non_terminal/parser_id.hpp
203 @@ -106,7 +106,7 @@ BOOST_SPIRIT_CLASSIC_NAMESPACE_BEGIN
204 : parser_id(reinterpret_cast<std::size_t>(this));
207 - void set_id(parser_id id) { tag = id; }
208 + void set_id(parser_id _id) { tag = _id; }
212 diff --git boost_1_39_0/boost/spirit/home/classic/core/non_terminal/rule.hpp boost_1_39_0/boost/spirit/home/classic/core/non_terminal/rule.hpp
213 index 73389b4..18d26cc 100644
214 --- misc/build/boost_1_39_0/boost/spirit/home/classic/core/non_terminal/rule.hpp
215 +++ misc/build/boost_1_39_0/boost/spirit/home/classic/core/non_terminal/rule.hpp
216 @@ -159,11 +159,11 @@ BOOST_SPIRIT_CLASSIC_NAMESPACE_BEGIN
220 - rule(abstract_parser_t* ptr)
222 + rule(abstract_parser_t* _ptr)
225 - rule(abstract_parser_t const* ptr)
227 + rule(abstract_parser_t const* _ptr)
230 scoped_ptr<abstract_parser_t> ptr;
232 diff --git boost_1_39_0/boost/spirit/home/classic/core/non_terminal/subrule.hpp boost_1_39_0/boost/spirit/home/classic/core/non_terminal/subrule.hpp
233 index 5d6761f..b93118a 100644
234 --- misc/build/boost_1_39_0/boost/spirit/home/classic/core/non_terminal/subrule.hpp
235 +++ misc/build/boost_1_39_0/boost/spirit/home/classic/core/non_terminal/subrule.hpp
236 @@ -210,7 +210,7 @@ BOOST_SPIRIT_CLASSIC_NAMESPACE_BEGIN
238 subrule_parser<ID2, DefT2, ContextT2>,
240 - operator,(subrule_parser<ID2, DefT2, ContextT2> const& rhs) const
241 + operator,(subrule_parser<ID2, DefT2, ContextT2> const& _rhs) const
245 @@ -220,7 +220,7 @@ BOOST_SPIRIT_CLASSIC_NAMESPACE_BEGIN
248 subrule_parser<ID2, DefT2, ContextT2>, nil_t>(
253 typename DefT::embed_t rhs;
254 @@ -258,10 +258,10 @@ BOOST_SPIRIT_CLASSIC_NAMESPACE_BEGIN
255 parse_main(ScannerT const& scan) const
257 typedef typename parser_result<self_t, ScannerT>::type result_t;
260 impl::parse_subrule<result_t, ScannerT, ID>::
263 + do_(_result, scan);
267 template <typename ScannerT>
268 diff --git boost_1_39_0/boost/spirit/home/classic/debug/impl/parser_names.ipp boost_1_39_0/boost/spirit/home/classic/debug/impl/parser_names.ipp
269 index 5d75be2..730cf0c 100644
270 --- misc/build/boost_1_39_0/boost/spirit/home/classic/debug/impl/parser_names.ipp
271 +++ misc/build/boost_1_39_0/boost/spirit/home/classic/debug/impl/parser_names.ipp
272 @@ -395,13 +395,13 @@ BOOST_SPIRIT_CLASSIC_NAMESPACE_BEGIN
275 bool register_node(void const *r, char const *name_to_register,
279 if (infos.find(r) != infos.end())
282 return infos.insert(rule_infos::value_type(r,
283 - rule_info(std::string(name_to_register), trace_node))
284 + rule_info(std::string(name_to_register), _trace_node))