• Christopher Dembia's avatar
    Fix Clang warning about unhandled enum values. · debf09a4
    Christopher Dembia authored
    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.
    debf09a4
ParsedExpression.cpp 21.2 KB