Implemented data() to vector

This commit is contained in:
Alex 2022-11-02 16:59:14 +02:00
parent ca33e7b85b
commit 62e1db5f39
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD

View File

@ -159,4 +159,6 @@ public:
VectorSize = 0;
VectorBuffer = 0;
}
T *data() { return VectorBuffer; }
};