You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
312 B
20 lines
312 B
///
|
|
/// build with g++ -fPIC -g -Wall -shared -o test2.so test2-0.cc test2-1.cc
|
|
/// and then pass the resulting test2.so to dwz by doing:
|
|
/// dwz test2.so
|
|
///
|
|
#include "test2.h"
|
|
|
|
first_type::first_type()
|
|
: member0(0),
|
|
member1(0)
|
|
{}
|
|
namespace a
|
|
{
|
|
|
|
first_type*
|
|
build_first_type()
|
|
{return new first_type;}
|
|
|
|
}
|