Add CIOWinManager

Former-commit-id: 8ca2500768
This commit is contained in:
Henrique Gemignani Passos Lima
2022-12-01 18:19:53 +02:00
parent 286110920f
commit 2e5ef5051a
31 changed files with 375 additions and 73 deletions

View File

@@ -105,9 +105,17 @@ public:
}
basic_string operator+(const _CharTp*);
int _eq_helper(const basic_string& other) const;
bool operator==(const basic_string& other) const;
const char* data() const { return x0_ptr; }
};
template < typename _CharTp, typename Traits, typename Alloc >
bool basic_string< _CharTp, Traits, Alloc >::operator==(const basic_string& other) const {
return _eq_helper(other) == 0;
}
// template <>
// const char basic_string<char>::mNull = 0;
// template <>