コンパイラからのこのメッセージは、慎重に検討する必要があるかどうか疑問に思っています。
次のコードを見てみましょう。
struct s
{
int a;
int b[];
};
void fun(struct s c)
{
}
int main()
{
return 0;
}
次のエラーが発生します。
main.c:7:6: note: the ABI of passing struct with a flexible array member has changed in GCC 4.4
私の質問は次のとおりです。より大きなプロジェクトでそのような構造を使用しても安全ですか? そのような構造の可能性のあるリスクと影響は何ですか (コンパイラ メッセージ以外に)?