Feat&Improve: Support gen pass code binding with domain

This commit is contained in:
yuanyuanxiang
2025-12-21 00:27:40 +01:00
parent bddd69a0bd
commit 0b67d06548
40 changed files with 613 additions and 490 deletions

View File

@@ -58,7 +58,8 @@ template<class _Ty>
using clean_type = typename std::remove_const_t<std::remove_reference_t<_Ty>>;
template <int _size, char _key1, char _key2, typename T>
class skCrypter {
class skCrypter
{
public:
__forceinline constexpr skCrypter(T* data)
{
@@ -123,7 +124,7 @@ private:
}
}
T _storage[_size]{};
T _storage[_size] {};
};
}