@@ -69,21 +69,21 @@ _EXPORT_STD template <class _Elem, class _Traits, class _Alloc>
6969basic_istream<_Elem, _Traits>& getline(
7070 basic_istream<_Elem, _Traits>&& _Istr, basic_string<_Elem, _Traits, _Alloc>& _Str) {
7171 // get characters into string, discard newline
72- return getline(_Istr, _Str, _Istr.widen('\n'));
72+ return _STD getline(_STD move( _Istr) , _Str, _Istr.widen('\n'));
7373}
7474
7575_EXPORT_STD template <class _Elem, class _Traits, class _Alloc>
7676basic_istream<_Elem, _Traits>& getline(
7777 basic_istream<_Elem, _Traits>& _Istr, basic_string<_Elem, _Traits, _Alloc>& _Str, const _Elem _Delim) {
7878 // get characters into string, discard delimiter
79- return getline(_STD move(_Istr), _Str, _Delim);
79+ return _STD getline(_STD move(_Istr), _Str, _Delim);
8080}
8181
8282_EXPORT_STD template <class _Elem, class _Traits, class _Alloc>
8383basic_istream<_Elem, _Traits>& getline(
8484 basic_istream<_Elem, _Traits>& _Istr, basic_string<_Elem, _Traits, _Alloc>& _Str) {
8585 // get characters into string, discard newline
86- return getline(_STD move(_Istr), _Str, _Istr.widen('\n'));
86+ return _STD getline(_STD move(_Istr), _Str, _Istr.widen('\n'));
8787}
8888
8989_EXPORT_STD _NODISCARD inline int stoi(const string& _Str, size_t* _Idx = nullptr, int _Base = 10) {
0 commit comments