"platforms/common/src/IntegrationUtilities.cpp" did not exist on "cca3e11a35bbab06ae65d57b14efd5aa20338eff"
Fix Clang warning about unhandled enum values.
Clang had been generating the following warning:
```
ParsedExpression.cpp:123:13:
warning:
30 enumeration values not handled in switch: 'CONSTANT', 'VARIABLE',
'CUSTOM'...
[-Wswitch]
switch (node.getOperation().getId()) {
^
1 warning generated.
```
To get rid of this warning, I added a default case, which does nothing.
Showing
Please register or sign in to comment