Sign in
fuchsia
/
third_party
/
swig
/
5cc90e6f5b321cae8e7290dc055d3e13543a2155
/
.
/
Examples
/
test-suite
/
restrict_cplusplus.i
blob: 53c5782a17b9637c75abe00b258a11130417c84f [
file
] [
log
] [
blame
]
%
module
restrict_cplusplus
%{
// Workaround PHP's headers which do:
// #define restrict __restrict__
#ifdef
restrict
#undef
restrict
#endif
struct
Foo
{
int
restrict
;
};
%}
struct
Foo
{
int
restrict
;
};