CScriptSpecialFunction: More matches

This commit is contained in:
2022-10-02 18:27:13 -04:00
parent e8133e9476
commit fdbd70eea1
7 changed files with 69 additions and 43 deletions

View File

@@ -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;