* include/bits/regex_automaton.h (_NFA_base::_M_paren_stack, _NFA):
Use normal std::vector even in Debug Mode.
From-SVN: r260046
2018-05-08 Jonathan Wakely <jwakely@redhat.com>
+ * include/bits/regex_automaton.h (_NFA_base::_M_paren_stack, _NFA):
+ Use normal std::vector even in Debug Mode.
+
PR libstdc++/85672
* include/Makefile.am [!ENABLE_FLOAT128]: Change c++config.h entry
to #undef _GLIBCXX_USE_FLOAT128 instead of defining it to zero.
_M_sub_count() const
{ return _M_subexpr_count; }
- std::vector<size_t> _M_paren_stack;
+ _GLIBCXX_STD_C::vector<size_t> _M_paren_stack;
_FlagT _M_flags;
_StateIdT _M_start_state;
_SizeT _M_subexpr_count;
template<typename _TraitsT>
struct _NFA
- : _NFA_base, std::vector<_State<typename _TraitsT::char_type>>
+ : _NFA_base, _GLIBCXX_STD_C::vector<_State<typename _TraitsT::char_type>>
{
typedef typename _TraitsT::char_type _Char_type;
typedef _State<_Char_type> _StateT;