macros rename

This commit is contained in:
2022-05-11 16:49:33 +03:00
parent fa19ad1093
commit 0897a8369f
20 changed files with 76 additions and 76 deletions

View File

@@ -773,7 +773,7 @@ REGISTER_VARIANT(PIMathVectord)
REGISTER_VARIANT(PIMathMatrixd)
BINARY_STREAM_STORE(PIVariant) {
BINARY_STREAM_WRITE(PIVariant) {
s << v._content << v._type;
if (v._type == PIVariant::pivCustom) {
#ifdef CUSTOM_PIVARIANT
@@ -788,7 +788,7 @@ BINARY_STREAM_STORE(PIVariant) {
}
return s;
}
BINARY_STREAM_RESTORE(PIVariant) {
BINARY_STREAM_READ(PIVariant) {
s >> v._content >> v._type;
if (v._type == PIVariant::pivCustom) {
PIString tn;