diff options
| author | Ganesh Viswanathan <dev@genotrance.com> | 2020-04-13 10:18:49 -0500 |
|---|---|---|
| committer | Ganesh Viswanathan <dev@genotrance.com> | 2020-04-13 10:19:34 -0500 |
| commit | 7925e31126085dd20c1be6472e81f8a6a14d2611 (patch) | |
| tree | b427568ab706faff0a65894d03b6da39bd993fbc /tests/include | |
| parent | 9cd39600d43c90045b0da6873900881449e6d609 (diff) | |
| download | nimterop-issue185.tar.gz nimterop-issue185.zip | |
Fix #185 - forward decl symbol changeissue185
Diffstat (limited to 'tests/include')
| -rw-r--r-- | tests/include/tast2.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/include/tast2.h b/tests/include/tast2.h index 4854eb7..76aadc9 100644 --- a/tests/include/tast2.h +++ b/tests/include/tast2.h @@ -162,6 +162,14 @@ struct GPU_Target char *x, y, **z; }; +// Issue #185 +struct SDL_AudioCVT; + +typedef struct SDL_AudioCVT +{ + int needed; +} SDL_AudioCVT; + // DUPLICATES @@ -318,6 +326,14 @@ struct GPU_Target char *x, y, **z; }; +// Issue #185 +struct SDL_AudioCVT; + +typedef struct SDL_AudioCVT +{ + int needed; +} SDL_AudioCVT; + #endif |
