Integration Tests: Fix thrift_unions tests

With a recent Thrift update, we now must also define a destructor for
this type.
This commit is contained in:
Alastair Robertson 2023-12-12 09:51:00 -08:00 committed by Alastair Robertson
parent 4fdf44b92d
commit 6b780add4a

View File

@ -16,6 +16,7 @@ raw_definitions = '''
namespace cpp2 {
void StaticUnion::__fbthrift_clear() {}
void DynamicUnion::__fbthrift_clear() {}
DynamicUnion::~DynamicUnion() {}
}
'''