summaryrefslogtreecommitdiff
path: root/libstdc++-v3/include/ext/sso_string_base.h
diff options
context:
space:
mode:
authorpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>2009-12-03 14:20:56 +0000
committerpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>2009-12-03 14:20:56 +0000
commit47c40967de46e2e7ef8c6c8ea68dbad323226102 (patch)
tree9d3617a39d3b1d4730536b70b1be7b55faa58744 /libstdc++-v3/include/ext/sso_string_base.h
parentc485f9984da2f9c42e076f8ba23f2d5d4b72f0db (diff)
downloadgcc-47c40967de46e2e7ef8c6c8ea68dbad323226102.tar.gz
2009-12-03 Paolo Carlini <paolo.carlini@oracle.com>
PR libstdc++/42261 * include/bits/basic_string.h (_S_construct_aux(_Integer, _Integer, const _Alloc&, __true_type)): Cast the second argument to value_type. * include/ext/sso_string_base.h (_M_construct_aux(_Integer, _Integer, std::__true_type)): Likewise. * include/ext/rc_string_base.h (_S_construct_aux(_Integer, _Integer, const _Alloc&, std::__true_type)): Likewise. * testsuite/21_strings/basic_string/cons/char/42261.cc: New. * testsuite/21_strings/basic_string/cons/wchar_t/42261.cc: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@154948 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include/ext/sso_string_base.h')
-rw-r--r--libstdc++-v3/include/ext/sso_string_base.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libstdc++-v3/include/ext/sso_string_base.h b/libstdc++-v3/include/ext/sso_string_base.h
index d88297fc36e..264e862e96a 100644
--- a/libstdc++-v3/include/ext/sso_string_base.h
+++ b/libstdc++-v3/include/ext/sso_string_base.h
@@ -106,7 +106,8 @@ _GLIBCXX_BEGIN_NAMESPACE(__gnu_cxx)
template<typename _Integer>
void
_M_construct_aux(_Integer __beg, _Integer __end, std::__true_type)
- { _M_construct(static_cast<size_type>(__beg), __end); }
+ { _M_construct(static_cast<size_type>(__beg),
+ static_cast<value_type>(__end)); }
template<typename _InIterator>
void