diff options
author | Varphone Wong <varphone@qq.com> | 2020-08-02 09:48:40 +0800 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2020-08-03 18:29:07 +0200 |
commit | ff3698189cb44f900e81d2b92131b1c191acf4de (patch) | |
tree | 89b8c03fe5f29b8afebf77ead0962f1f8b217d06 /tests/headers/no_debug_bypass_impl_debug.hpp | |
parent | f56fbcef788098155a10ef455284e218fe15bc7a (diff) |
Add --no-debug <regex> flag
Diffstat (limited to 'tests/headers/no_debug_bypass_impl_debug.hpp')
-rw-r--r-- | tests/headers/no_debug_bypass_impl_debug.hpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/headers/no_debug_bypass_impl_debug.hpp b/tests/headers/no_debug_bypass_impl_debug.hpp new file mode 100644 index 00000000..a5864410 --- /dev/null +++ b/tests/headers/no_debug_bypass_impl_debug.hpp @@ -0,0 +1,11 @@ +// bindgen-flags: --no-debug "NoDebug" --impl-debug + +template<typename T> +class Generic { + T t[40]; +}; + +template<typename T> +class NoDebug { + T t[40]; +}; |