Codeblocks使用nullptr报错:warning: identifier 'nullptr' is a keyword in C++11 [-Wc++0x-compat]

Codeblocks使用nullptr报错:warning: identifier 'nullptr' is a keyword in C++11 [-Wc++0x-compat]

问题描述

主要原因是nullptr是C11的特性,需要在编译器中设置。

解决步骤

点击 setting(设置) -----> compiler setting(编译器设置) -----> Global compiler settings(全局编译器设置) -----> Compiler settings(编译器设置) -----> Compiler Flags(编译器标志) -----> Have g++ follow the C++ 11 ISO C++ language standard [-std=c++11],选中并确定。

Codeblocks使用nullptr报错:warning: identifier 'nullptr' is a keyword in C++11 [-Wc++0x-compat]_第1张图片

再次编译,无此报错信息。

Codeblocks使用nullptr报错:warning: identifier 'nullptr' is a keyword in C++11 [-Wc++0x-compat]_第2张图片

 

你可能感兴趣的:(C/C++)