packed10.c
来自「用于进行gcc测试」· C语言 代码 · 共 15 行
C
15 行
// PR c++/13983, c++/17519// The typedef and the array were causing us to miss that A<int> is// a packed type.template <class T>struct A { A();} __attribute__((packed));typedef A<int> Ai;struct B { Ai a[2];} __attribute__((packed));
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?