DDeepin Developerfeat: Init commit
b83cb584创建于 2022年10月19日历史提交
%module cpp11_alignment

%inline %{
struct A {
  int member;
};
const int align1 = alignof(int);
const int align2 = alignof(int *);
%}

%{
// alignas - not yet working
struct alignas(16) S {
  int num;
};
alignas(double) unsigned char c[sizeof(double)];
%}