You need to sign in or sign up before continuing.×
Ad

set all return values to zero, and changed the comment

Code
Diff
  • // Among us
    int foo() { return 0; }
    int bar() { return 0; }
    int baz() { return 0; }
    • // fixed
    • int foo() { return 1; }
    • int bar() { return 2; }
    • int baz() { return 3; }
    • // Among us
    • int foo() { return 0; }
    • int bar() { return 0; }
    • int baz() { return 0; }