diff options
Diffstat (limited to 'packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/b.h')
-rw-r--r-- | packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/b.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/b.h b/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/b.h new file mode 100644 index 0000000000000..b777e8e34739a --- /dev/null +++ b/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/b.h @@ -0,0 +1,6 @@ +#include "a.h" +#include "memory.h" + +class Module { + my_std::unique_ptr<MemoryBuffer> MBptr; +}; |