C++11で新たに追加されたnullptrキーワード(→id:yohhoy:20120503)利用促進のため、gcc 4.7から新しい警告オプション -Wzero-as-null-pointer-constant が追加された。
http://gcc.gnu.org/gcc-4.7/changes.html
- A new command-line option
-Wzero-as-null-pointer-constant
has been added to warn when a literal '0' is used as null pointer constant. It can be useful to facilitate the conversion tonullptr
in C++11.