Minor improvements to CScriptVisorFlare

Former-commit-id: e31200f62d
This commit is contained in:
2022-11-01 21:21:07 -04:00
parent 8498bd6e94
commit 5707a847da
5 changed files with 38 additions and 40 deletions

View File

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