mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-12 00:23:59 +00:00
Add rstl::binary_find
Including CAnimData::GetBoundingBox
Former-commit-id: e4a864880b
This commit is contained in:
@@ -107,6 +107,7 @@ public:
|
||||
|
||||
int _eq_helper(const basic_string& other) const;
|
||||
bool operator==(const basic_string& other) const;
|
||||
bool operator<(const basic_string& other) const;
|
||||
|
||||
const char* data() const { return x0_ptr; }
|
||||
};
|
||||
@@ -116,6 +117,11 @@ bool basic_string< _CharTp, Traits, Alloc >::operator==(const basic_string& othe
|
||||
return _eq_helper(other) == 0;
|
||||
}
|
||||
|
||||
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 <>
|
||||
|
||||
Reference in New Issue
Block a user