Files
cbindgen/tests/expectations/array.cpp
T
Jeff Muizelaar 42b4290c64 Manually copy arrays
C++ arrays can't be assigned. We detect this situation and manually copy
over the elements.
2019-01-03 16:06:33 -06:00

36 lines
454 B
C++

#include <cstdarg>
#include <cstdint>
#include <cstdlib>
struct Foo {
enum class Tag {
A,
};
struct A_Body {
float _0[20];
};
Tag tag;
union {
A_Body a;
};
static Foo A(const float (&a0)[20]) {
Foo result;
for (int i = 0; i < 20; i++) {result.a._0[i] = a0[i];}
result.tag = Tag::A;
return result;
}
bool IsA() const {
return tag == Tag::A;
}
};
extern "C" {
void root(Foo a);
} // extern "C"