summaryrefslogtreecommitdiff
path: root/boost
diff options
context:
space:
mode:
authorPeter Foley <pefoley2@verizon.net>2012-10-27 13:43:54 -0400
committerPeter Foley <pefoley2@verizon.net>2012-10-27 13:46:50 -0400
commitbce37dbd616bb21d81a7e49ee3b8f8a3903e82f5 (patch)
tree690581fe9081abd583da3ac4be1ac4692924cc6f /boost
parentb596ce9bb1feafe5c09fa87582d96acceb6ae37d (diff)
fix linking on windows
Change-Id: Ibd2fe3cf8775cbda51f768ceaeb92b66a91c3850
Diffstat (limited to 'boost')
-rw-r--r--boost/boost_1_44_0-clang-warnings.patch203
1 files changed, 0 insertions, 203 deletions
diff --git a/boost/boost_1_44_0-clang-warnings.patch b/boost/boost_1_44_0-clang-warnings.patch
index b9249c07c83c..ed81ce5f594a 100644
--- a/boost/boost_1_44_0-clang-warnings.patch
+++ b/boost/boost_1_44_0-clang-warnings.patch
@@ -69,209 +69,6 @@
{
m_period_separator;
m_period_start_delimeter;
---- misc/boost_1_44_0/boost/multi_array/multi_array_ref.hpp
-+++ misc/build/boost_1_44_0/boost/multi_array/multi_array_ref.hpp
-@@ -86,24 +86,24 @@ public:
- num_elements_(other.num_elements_) { }
-
- template <typename ExtentList>
-- explicit const_multi_array_ref(TPtr base, const ExtentList& extents) :
-+ explicit const_multi_array_ref(TPtr base, const ExtentList& extentlist) :
- base_(base), storage_(c_storage_order()) {
- boost::function_requires<
- detail::multi_array::CollectionConcept<ExtentList> >();
-
- index_base_list_.assign(0);
-- init_multi_array_ref(extents.begin());
-+ init_multi_array_ref(extentlist.begin());
- }
-
- template <typename ExtentList>
-- explicit const_multi_array_ref(TPtr base, const ExtentList& extents,
-+ explicit const_multi_array_ref(TPtr base, const ExtentList& extentlist,
- const general_storage_order<NumDims>& so) :
- base_(base), storage_(so) {
- boost::function_requires<
- detail::multi_array::CollectionConcept<ExtentList> >();
-
- index_base_list_.assign(0);
-- init_multi_array_ref(extents.begin());
-+ init_multi_array_ref(extentlist.begin());
- }
-
- explicit const_multi_array_ref(TPtr base,
-@@ -161,14 +161,14 @@ public:
- }
-
- template <typename SizeList>
-- void reshape(const SizeList& extents) {
-+ void reshape(const SizeList& extentlist) {
- boost::function_requires<
- detail::multi_array::CollectionConcept<SizeList> >();
- BOOST_ASSERT(num_elements_ ==
-- std::accumulate(extents.begin(),extents.end(),
-+ std::accumulate(extentlist.begin(),extentlist.end(),
- size_type(1),std::multiplies<size_type>()));
-
-- std::copy(extents.begin(),extents.end(),extent_list_.begin());
-+ std::copy(extentlist.begin(),extentlist.end(),extent_list_.begin());
- this->compute_strides(stride_list_,extent_list_,storage_);
-
- origin_offset_ =
-@@ -208,11 +208,11 @@ public:
- }
-
- template <typename IndexList>
-- const element& operator()(IndexList indices) const {
-+ const element& operator()(IndexList indexlist) const {
- boost::function_requires<
- detail::multi_array::CollectionConcept<IndexList> >();
- return super_type::access_element(boost::type<const element&>(),
-- indices,origin(),
-+ indexlist,origin(),
- shape(),strides(),index_bases());
- }
-
-@@ -231,12 +231,12 @@ public:
- #endif // BOOST_MSVC
- typename const_array_view<NDims>::type
- operator[](const detail::multi_array::
-- index_gen<NumDims,NDims>& indices)
-+ index_gen<NumDims,NDims>& indexlist)
- const {
- typedef typename const_array_view<NDims>::type return_type;
- return
- super_type::generate_array_view(boost::type<return_type>(),
-- indices,
-+ indexlist,
- shape(),
- strides(),
- index_bases(),
-@@ -328,10 +328,10 @@ public:
- const_multi_array_ref(TPtr base,
- const storage_order_type& so,
- const index * index_bases_,
-- const size_type* extents) :
-+ const size_type* extentlist) :
- base_(base), storage_(so), origin_offset_(0), directional_offset_(0)
- {
-- // If index_bases_ or extents is null, then initialize the corresponding
-+ // If index_bases_ or extentlist is null, then initialize the corresponding
- // private data to zeroed lists.
- if(index_bases_) {
- boost::detail::multi_array::
-@@ -339,8 +339,8 @@ public:
- } else {
- std::fill_n(index_base_list_.begin(),NumDims,0);
- }
-- if(extents) {
-- init_multi_array_ref(extents);
-+ if(extentlist) {
-+ init_multi_array_ref(extentlist);
- } else {
- boost::array<index,NumDims> extent_list;
- extent_list.assign(0);
-@@ -374,12 +374,12 @@ private:
- boost::mem_fun_ref(&extent_range::start));
-
- // calculate the extents
-- extent_list extents;
-+ extent_list extentlist;
- std::transform(ranges.ranges_.begin(),ranges.ranges_.end(),
-- extents.begin(),
-+ extentlist.begin(),
- boost::mem_fun_ref(&extent_range::size));
-
-- init_multi_array_ref(extents.begin());
-+ init_multi_array_ref(extentlist.begin());
- }
-
-
-@@ -445,16 +445,16 @@ public:
- };
-
- template <class ExtentList>
-- explicit multi_array_ref(T* base, const ExtentList& extents) :
-- super_type(base,extents) {
-+ explicit multi_array_ref(T* base, const ExtentList& extentlist) :
-+ super_type(base,extentlist) {
- boost::function_requires<
- detail::multi_array::CollectionConcept<ExtentList> >();
- }
-
- template <class ExtentList>
-- explicit multi_array_ref(T* base, const ExtentList& extents,
-+ explicit multi_array_ref(T* base, const ExtentList& extentlist,
- const general_storage_order<NumDims>& so) :
-- super_type(base,extents,so) {
-+ super_type(base,extentlist,so) {
- boost::function_requires<
- detail::multi_array::CollectionConcept<ExtentList> >();
- }
-@@ -509,11 +509,11 @@ public:
- element* data() { return super_type::base_; }
-
- template <class IndexList>
-- element& operator()(const IndexList& indices) {
-+ element& operator()(const IndexList& indexlist) {
- boost::function_requires<
- detail::multi_array::CollectionConcept<IndexList> >();
- return super_type::access_element(boost::type<element&>(),
-- indices,origin(),
-+ indexlist,origin(),
- this->shape(),this->strides(),
- this->index_bases());
- }
-@@ -535,11 +535,11 @@ public:
- #endif // BOOST_MSVC
- typename array_view<NDims>::type
- operator[](const detail::multi_array::
-- index_gen<NumDims,NDims>& indices) {
-+ index_gen<NumDims,NDims>& indexlist) {
- typedef typename array_view<NDims>::type return_type;
- return
- super_type::generate_array_view(boost::type<return_type>(),
-- indices,
-+ indexlist,
- this->shape(),
- this->strides(),
- this->index_bases(),
-@@ -576,10 +576,10 @@ public:
- const element* data() const { return super_type::data(); }
-
- template <class IndexList>
-- const element& operator()(const IndexList& indices) const {
-+ const element& operator()(const IndexList& indexlist) const {
- boost::function_requires<
- detail::multi_array::CollectionConcept<IndexList> >();
-- return super_type::operator()(indices);
-+ return super_type::operator()(indexlist);
- }
-
- const_reference operator[](index idx) const {
-@@ -597,9 +597,9 @@ public:
- #endif // BOOST_MSVC
- typename const_array_view<NDims>::type
- operator[](const detail::multi_array::
-- index_gen<NumDims,NDims>& indices)
-+ index_gen<NumDims,NDims>& indexlist)
- const {
-- return super_type::operator[](indices);
-+ return super_type::operator[](indexlist);
- }
-
- const_iterator begin() const {
-@@ -623,8 +623,8 @@ protected:
- explicit multi_array_ref(T* base,
- const storage_order_type& so,
- const index* index_bases_,
-- const size_type* extents) :
-- super_type(base,so,index_bases_,extents) { }
-+ const size_type* extentlist) :
-+ super_type(base,so,index_bases_,extentlist) { }
-
- };
-
--- misc/boost_1_44_0/boost/token_functions.hpp 2010-06-12 14:06:28.000000000 +0200
+++ misc/build/boost_1_44_0/boost/token_functions.hpp 2012-06-06 23:12:27.000000000 +0200
@@ -285,7 +285,7 @@