mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-13 04:06:07 +00:00
@@ -9,11 +9,6 @@ class pair {
|
||||
public:
|
||||
inline pair() {}
|
||||
inline pair(const L& first, const R& second) : first(first), second(second) {}
|
||||
inline pair(const pair& other) : first(other.first), second(other.second) {}
|
||||
inline void operator=(const pair& other) {
|
||||
first = other.first;
|
||||
second = other.second;
|
||||
}
|
||||
|
||||
L first;
|
||||
R second;
|
||||
|
||||
Reference in New Issue
Block a user