diff options
Diffstat (limited to 'tests/headers/blocklist-file.hpp')
-rw-r--r-- | tests/headers/blocklist-file.hpp | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/headers/blocklist-file.hpp b/tests/headers/blocklist-file.hpp deleted file mode 100644 index ad8bcd66..00000000 --- a/tests/headers/blocklist-file.hpp +++ /dev/null @@ -1,18 +0,0 @@ -// bindgen-flags: --blocklist-file ".*/blocklisted/file.*" -- -Itests/headers - -// Forward declaration of struct that's defined in a blocklisted file. -struct StructWithBlocklistedDefinition; - -#include "blocklisted/file.hpp" -#include "blocklisted/fake-stdint.h" - -struct SizedIntegers { - uint8_t x; - uint16_t y; - uint32_t z; -}; - -// Actual definition of struct that has a forward declaration in a blocklisted file. -struct StructWithBlocklistedFwdDecl { - uint8_t b; -}; |