error: expected primary-expression before ']' token with struct
1 2 3 4 5 6 | struct Point { int x, y; }; int Height[ Point ]; |
当我试图声明一个包含"point"类型的新向量时,会得到这个错误。错误是
error: expected primary-expression before ']' token
在最后一行(int height….)
1 2 3 4 5 6 | struct Point { int x, y; }; int Height[ Point ]; |
当我试图声明一个包含"point"类型的新向量时,会得到这个错误。错误是
error: expected primary-expression before ']' token
在最后一行(int height….)