master
game_state *GameState = (game_state *)Memory->PermanentStorage;
C-style pointer casting detected. C++ offers four different kinds of casts as replacements: staticcast, constcast, dynamiccast and reinterpretcast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts. (detailed CWE explanation)