diff options
Diffstat (limited to 'lldb/test/lang/cpp/limit-debug-info/derived.h')
-rw-r--r-- | lldb/test/lang/cpp/limit-debug-info/derived.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/lldb/test/lang/cpp/limit-debug-info/derived.h b/lldb/test/lang/cpp/limit-debug-info/derived.h deleted file mode 100644 index 46b3f83b9f7..00000000000 --- a/lldb/test/lang/cpp/limit-debug-info/derived.h +++ /dev/null @@ -1,13 +0,0 @@ -#include "base.h" - -class Foo : public FooNS -{ -public: - Foo() { - a = 12345; - } - - char baz() override; - int a; -}; - |