feat(region): add SRgnDuplicate

This commit is contained in:
Adam Heinermann 2025-04-21 00:03:37 -07:00 committed by fallenoak
parent 4dcb438394
commit 335962e3fc
4 changed files with 61 additions and 1 deletions

View file

@ -12,6 +12,10 @@ class TSHashObject {
TSLink<T> m_linktoslot;
TSLink<T> m_linktofull;
TKey m_key;
TSHashObject & operator=(const TSHashObject &source) {
return *this;
}
};
#endif