update boost on linux

This commit is contained in:
Bassem Girgis
2019-08-10 16:06:25 -05:00
parent 76ad52be58
commit 861b918727
5363 changed files with 483306 additions and 116507 deletions

View File

@@ -24,12 +24,12 @@
///////////////////////////////////////////////////////////////////////////////
namespace boost {
namespace wave {
namespace wave {
namespace impl {
///////////////////////////////////////////////////////////////////////////////
//
// The new Boost.Iterator library already conatins a transform_iterator usable
// The new Boost.Iterator library already conatins a transform_iterator usable
// for our needs. The code below wraps this up.
//
///////////////////////////////////////////////////////////////////////////////
@@ -46,7 +46,7 @@ namespace impl {
};
template <class AdaptableUnaryFunctionT, class IteratorT>
inline
inline
typename ref_transform_iterator_generator<
AdaptableUnaryFunctionT, IteratorT>::type
make_ref_transform_iterator(
@@ -68,9 +68,9 @@ namespace impl {
typedef ParseTreeNodeT const &argument_type;
static result_type
transform (argument_type node)
transform (argument_type node)
{
BOOST_ASSERT(1 == std::distance(node.value.begin(),
BOOST_ASSERT(1 == std::distance(node.value.begin(),
node.value.end()));
return *node.value.begin();
}