9 lines · cpp
1#include "common.h"2 3// Parameter "Foo*" forces LLDB to parse "Foo" from the object4// file that it is stopped in.5void lib1_func(Foo *) {6 // Force definition into lib1.o debug-info.7 Foo{}.foo();8}9 1#include "common.h"2 3// Parameter "Foo*" forces LLDB to parse "Foo" from the object4// file that it is stopped in.5void lib1_func(Foo *) {6 // Force definition into lib1.o debug-info.7 Foo{}.foo();8}9