Skip to content
  • deuce's avatar
    Fix new error with Clang 6.x: · cb1d932f
    deuce authored
    exec.cpp:438:8: error: case value evaluates to 2684500526, which cannot be narrowed to type 'int32_t' (aka 'int')
          [-Wc++11-narrowing]
                    case 0xA0023A2E:
                         ^
    
    The switch cases were unsigned, but the passed value was an int32.
    cb1d932f