1class FooBase {
2public:
3 virtual void bar();
4
5protected:
6 FooBase();
7
8 int x;
9};
10
11namespace ns {
12class Foo2Base {
13public:
14 virtual void bar();
15
16protected:
17 Foo2Base();
18
19 int x;
20};
21
22} // namespace ns
23

Provided by KDAB

Privacy Policy
Update your C++ knowledge – Modern C++11/14/17 Training
Find out more

source code of lldb/test/API/lang/cpp/limit-debug-info/base.h