Add missing default case to masking filter

The default case for the PS field values was missing.
This commit is contained in:
Markus Mäkelä
2017-09-12 14:49:52 +03:00
parent 616a1e0736
commit 099a482f04

View File

@ -1104,6 +1104,9 @@ public:
case MAX_NO_FIELD_TYPES: case MAX_NO_FIELD_TYPES:
ss_dassert(!true); ss_dassert(!true);
break; break;
default:
break;
} }
++m_iNulls; ++m_iNulls;