File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -1307,6 +1307,9 @@ Error BasicELFBuilder::initSections() {
1307
1307
return Error::success ();
1308
1308
}
1309
1309
1310
+ BasicELFBuilder::BasicELFBuilder () : Obj(std::make_unique<Object>()) {}
1311
+ BasicELFBuilder::~BasicELFBuilder () = default ;
1312
+
1310
1313
void BinaryELFBuilder::addData (SymbolTableSection *SymTab) {
1311
1314
auto Data = ArrayRef<uint8_t >(
1312
1315
reinterpret_cast <const uint8_t *>(MemBuf->getBufferStart ()),
Original file line number Diff line number Diff line change @@ -1059,7 +1059,8 @@ class BasicELFBuilder {
1059
1059
Error initSections ();
1060
1060
1061
1061
public:
1062
- BasicELFBuilder () : Obj(std::make_unique<Object>()) {}
1062
+ BasicELFBuilder ();
1063
+ ~BasicELFBuilder ();
1063
1064
};
1064
1065
1065
1066
class BinaryELFBuilder : public BasicELFBuilder {
You can’t perform that action at this time.
0 commit comments