Skip to content

Commit 5189bbe

Browse files
committed
headers: Remove duplicate functions
1 parent 651dc29 commit 5189bbe

1 file changed

Lines changed: 1 addition & 8 deletions

File tree

headers/string

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -185,13 +185,9 @@ public:
185185
template<class InputIt>
186186
basic_string& assign(InputIt first, InputIt last);
187187

188-
basic_string& assign(std::initializer_list<CharT> ilist);
189-
template <class InputIt>
190-
void assign(InputIt first, InputIt last);
191-
192188
#if CPPREFERENCE_STDVER>= 2011
193189
basic_string& assign(basic_string&& str);
194-
void assign(std::initializer_list<CharT> ilist);
190+
basic_string& assign(std::initializer_list<CharT> ilist);
195191
#endif
196192

197193
allocator_type get_allocator() const;
@@ -387,9 +383,6 @@ public:
387383
size_type count,
388384
size_type pos = 0) const;
389385

390-
void resize(size_type count);
391-
void resize(size_type count, CharT ch);
392-
393386
void swap(basic_string& other);
394387

395388
// search

0 commit comments

Comments
 (0)