aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/StlSupport
diff options
context:
space:
mode:
authorGravatar Antonio Sanchez <cantonios@google.com>2020-12-10 14:59:34 -0800
committerGravatar Antonio Sanchez <cantonios@google.com>2020-12-10 14:59:34 -0800
commit82c0c18a8373eb57c25f543b77a592467ba8e22e (patch)
tree53614f779dbcebcfbb0b27a4d6923be2ec03101e /Eigen/src/StlSupport
parent00be0a7ff39caef76bbd4767fca86e89f4a5b45e (diff)
Remove private access of std::deque::_M_impl.
This no longer works on gcc or clang, so we should just remove the hack. The default should compile to similar code anyways.
Diffstat (limited to 'Eigen/src/StlSupport')
-rw-r--r--Eigen/src/StlSupport/StdDeque.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/Eigen/src/StlSupport/StdDeque.h b/Eigen/src/StlSupport/StdDeque.h
index 006ac1164..6d47e7572 100644
--- a/Eigen/src/StlSupport/StdDeque.h
+++ b/Eigen/src/StlSupport/StdDeque.h
@@ -98,19 +98,7 @@ namespace std {
{ return deque_base::insert(position,x); }
void insert(const_iterator position, size_type new_size, const value_type& x)
{ deque_base::insert(position, new_size, x); }
-#elif defined(_GLIBCXX_DEQUE) && EIGEN_GNUC_AT_LEAST(4,2) && !EIGEN_GNUC_AT_LEAST(10, 1)
- // workaround GCC std::deque implementation
- // GCC 10.1 doesn't let us access _Deque_impl _M_impl anymore and we have to
- // fall-back to the default case
- void resize(size_type new_size, const value_type& x)
- {
- if (new_size < deque_base::size())
- deque_base::_M_erase_at_end(this->_M_impl._M_start + new_size);
- else
- deque_base::insert(deque_base::end(), new_size - deque_base::size(), x);
- }
#else
- // either non-GCC or GCC between 4.1 and 10.1
// default implementation which should always work.
void resize(size_type new_size, const value_type& x)
{