Files

14 lines
396 B
Plaintext
Raw Permalink Normal View History

2025-02-07 19:08:31 +03:30
template <typename T>
struct TestCacheRecord
{
T Result;
uchar OptBuffer[];
uchar Genetic[];
void operator =( const T &Value )
{
this.Result = Value;
return;
}
};