mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-15 16:06:09 +00:00
Expand CStateManager.
- Expand ct/dt
- Add AllocateUniqueId
- Add rstl::set, multimap, reserved_vector::resize
Former-commit-id: 92def96f31
This commit is contained in:
@@ -17,6 +17,11 @@ struct select1st< pair< K, V > > {
|
||||
const K& operator()(const pair< K, V >& it) const { return it.first; }
|
||||
};
|
||||
|
||||
template < typename P >
|
||||
struct identity {
|
||||
const P& operator()(const P& it) const { return it; }
|
||||
};
|
||||
|
||||
template < typename T >
|
||||
struct less {
|
||||
bool operator()(const T& a, const T& b) const { return a < b; }
|
||||
|
||||
Reference in New Issue
Block a user