- (#205866: boost::spirit generates warnings with -Wshadow)
- (#205863: serialization lib generates warnings) - (#204326: boost RPM missing dependencies) - (#193465: [SIGNAL/BIND] Regressions with GCC 4.1) - BUILD_FLAGS, add, to see actual compile line. - REGEX_FLAGS, add, to compile regex with ICU support.
This commit is contained in:
parent
4da8270568
commit
81a479fac9
@ -33,7 +33,7 @@
|
|||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
inline bool
|
inline bool
|
||||||
--- 17,28 ----
|
--- 17,29 ----
|
||||||
: len(-1), val() {}
|
: len(-1), val() {}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
@ -46,49 +46,3 @@
|
|||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
inline bool
|
inline bool
|
||||||
*** boost/spirit/core/scanner/scanner.hpp.orig 2006-11-13 11:57:51.000000000 +0100
|
|
||||||
--- boost/spirit/core/scanner/scanner.hpp 2006-11-13 12:00:06.000000000 +0100
|
|
||||||
*************** namespace boost { namespace spirit
|
|
||||||
*** 242,263 ****
|
|
||||||
bool
|
|
||||||
at_end() const
|
|
||||||
{
|
|
||||||
! typedef typename PoliciesT::iteration_policy_t iteration_policy_t;
|
|
||||||
! return iteration_policy_t::at_end(*this);
|
|
||||||
}
|
|
||||||
|
|
||||||
value_t
|
|
||||||
operator*() const
|
|
||||||
{
|
|
||||||
! typedef typename PoliciesT::iteration_policy_t iteration_policy_t;
|
|
||||||
! return iteration_policy_t::filter(iteration_policy_t::get(*this));
|
|
||||||
}
|
|
||||||
|
|
||||||
scanner const&
|
|
||||||
operator++() const
|
|
||||||
{
|
|
||||||
! typedef typename PoliciesT::iteration_policy_t iteration_policy_t;
|
|
||||||
! iteration_policy_t::advance(*this);
|
|
||||||
return *this;
|
|
||||||
}
|
|
||||||
|
|
||||||
--- 242,260 ----
|
|
||||||
bool
|
|
||||||
at_end() const
|
|
||||||
{
|
|
||||||
! return PoliciesT::iteration_policy_t::at_end(*this);
|
|
||||||
}
|
|
||||||
|
|
||||||
value_t
|
|
||||||
operator*() const
|
|
||||||
{
|
|
||||||
! return PoliciesT::iteration_policy_t::filter(iteration_policy_t::get(*this));
|
|
||||||
}
|
|
||||||
|
|
||||||
scanner const&
|
|
||||||
operator++() const
|
|
||||||
{
|
|
||||||
! PoliciesT::iteration_policy_t::advance(*this);
|
|
||||||
return *this;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user