📄 tmplattr2.c
字号:
// PR c++/17743template <unsigned Len, unsigned Align>struct aligned_storage{ typedef char type[Len] __attribute__((aligned((Align))));};template<typename T>struct X{ typename aligned_storage<sizeof(T),__alignof(T)>::type data;};template<bool> struct StaticAssert;template<> struct StaticAssert<true> {};StaticAssert<__alignof (X<double>) == __alignof (double)> dummy;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -