cwVariant.cpp : Fix bad initialization in _variantDescArray[] sentinel.

This commit is contained in:
kevin 2024-03-25 10:53:25 -04:00
parent e04c293856
commit a2aa26754b

View File

@ -46,7 +46,7 @@ namespace cw
{ kPtrVFl | kFloatVFl, "float_ptr", "p", sizeof(float) },
{ kPtrVFl | kDoubleVFl, "double_ptr", "p", sizeof(double) },
{ 0, nullptr, 0 }
{ 0, nullptr, nullptr, 0 }
};