summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--boost/boost-1.30.2.patch42
1 files changed, 42 insertions, 0 deletions
diff --git a/boost/boost-1.30.2.patch b/boost/boost-1.30.2.patch
index 6a42e93f80d0..c65b483cf3a4 100644
--- a/boost/boost-1.30.2.patch
+++ b/boost/boost-1.30.2.patch
@@ -668,3 +668,45 @@
+
#endif // BOOST_MPL_SEQUENCE_TAG_HPP_INCLUDED
+*** misc/build/boost-1.30.2/boost/token_functions.hpp 2007-05-20 07:38:11.000000000 -0400
+--- misc/modified/boost-1.30.2/boost/token_functions.hpp 2007-05-20 08:05:05.000000000 -0400
+***************
+*** 64,70 ****
+ // character (backslash \), can be assigned to other characters.
+
+ struct escaped_list_error : public std::runtime_error{
+! escaped_list_error(const std::string& what):std::runtime_error(what) { }
+ };
+
+
+--- 64,70 ----
+ // character (backslash \), can be assigned to other characters.
+
+ struct escaped_list_error : public std::runtime_error{
+! escaped_list_error(const std::string& s_what) : std::runtime_error(s_what) { }
+ };
+
+
+*** misc/build/boost-1.30.2/boost/token_iterator.hpp 2007-05-20 07:38:10.000000000 -0400
+--- misc/modified/boost-1.30.2/boost/token_iterator.hpp 2007-05-20 08:10:20.000000000 -0400
+***************
+*** 64,72 ****
+
+ template<class Iterator>
+ typename Iterator::reference
+! dereference(const Iterator& a) const{
+ using namespace std;
+! assert(a.base().valid_);
+ return tok_;
+ }
+ template <class Iterator>
+--- 64,72 ----
+
+ template<class Iterator>
+ typename Iterator::reference
+! dereference(const Iterator& /*a*/) const{
+ using namespace std;
+! //assert(a.base().valid_);
+ return tok_;
+ }
+ template <class Iterator>