| 1 | struct Base { |
|---|---|
| 2 | int m_base_val = 42; |
| 3 | }; |
| 4 | |
| 5 | LLDB_DYLIB_EXPORT struct Foo : public Base { |
| 6 | int m_derived_val = 137; |
| 7 | } global_foo; |
| 8 |
| 1 | struct Base { |
|---|---|
| 2 | int m_base_val = 42; |
| 3 | }; |
| 4 | |
| 5 | LLDB_DYLIB_EXPORT struct Foo : public Base { |
| 6 | int m_derived_val = 137; |
| 7 | } global_foo; |
| 8 |