mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-13 02:46:08 +00:00
@@ -7,14 +7,8 @@ namespace rstl {
|
||||
template < typename L, typename R >
|
||||
class pair {
|
||||
public:
|
||||
inline pair() {}
|
||||
inline pair(const L& first, const R& second) : first(first), second(second) {}
|
||||
|
||||
inline pair& operator=(const pair& other) {
|
||||
first = other.first;
|
||||
second = other.second;
|
||||
return *this;
|
||||
}
|
||||
pair() {}
|
||||
pair(const L& first, const R& second) : first(first), second(second) {}
|
||||
|
||||
L first;
|
||||
R second;
|
||||
|
||||
Reference in New Issue
Block a user