Skip to content

Instantly share code, notes, and snippets.

@domiyanyue
Created April 23, 2020 19:00
Show Gist options
  • Save domiyanyue/bc1ccd1c0fd58b64b5d05eeb99ef355b to your computer and use it in GitHub Desktop.
Save domiyanyue/bc1ccd1c0fd58b64b5d05eeb99ef355b to your computer and use it in GitHub Desktop.
cpp_tutorial# g++ warning_example.cpp -Wuninitialized -o a -Werror
warning_example.cpp: In function ‘int main()’:
warning_example.cpp:4:19: error: ‘array[1]’ is used uninitialized in this function [-Werror=uninitialized]
return array[1];
^
cc1plus: all warnings being treated as errors
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment