CScriptSpecialFunction: More matches

Former-commit-id: fdbd70eea1
This commit is contained in:
2022-10-02 18:27:13 -04:00
parent 5da4fc096b
commit c8f194b18c
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;