我需要一些帮助来了解此错误发生的位置:
警告:非静态数据成员的类内初始化是 C++11 扩展 [-Wc++11-extensions]
这是它来自的代码部分:
typedef struct Hand {
bool straight = false;
bool flush = false;
bool four = false;
bool three = false;
int pairs = 0;
} Hand;
我需要一些帮助来了解此错误发生的位置:
警告:非静态数据成员的类内初始化是 C++11 扩展 [-Wc++11-extensions]
这是它来自的代码部分:
typedef struct Hand {
bool straight = false;
bool flush = false;
bool four = false;
bool three = false;
int pairs = 0;
} Hand;