1 parent 651dc29 commit 5189bbeCopy full SHA for 5189bbe
1 file changed
headers/string
@@ -185,13 +185,9 @@ public:
185
template<class InputIt>
186
basic_string& assign(InputIt first, InputIt last);
187
188
- basic_string& assign(std::initializer_list<CharT> ilist);
189
- template <class InputIt>
190
- void assign(InputIt first, InputIt last);
191
-
192
#if CPPREFERENCE_STDVER>= 2011
193
basic_string& assign(basic_string&& str);
194
- void assign(std::initializer_list<CharT> ilist);
+ basic_string& assign(std::initializer_list<CharT> ilist);
195
#endif
196
197
allocator_type get_allocator() const;
@@ -387,9 +383,6 @@ public:
387
383
size_type count,
388
384
size_type pos = 0) const;
389
385
390
- void resize(size_type count);
391
- void resize(size_type count, CharT ch);
392
393
386
void swap(basic_string& other);
394
395
// search
0 commit comments