File tree 1 file changed +6
-2
lines changed
src/cpp/fastdds/builtin/type_lookup_service
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -373,7 +373,9 @@ void TypeLookupRequestListener::answer_request(
373
373
TypeLookup_getTypeDependencies_Out& out)
374
374
{
375
375
TypeLookup_Reply* reply = static_cast <TypeLookup_Reply*>(typelookup_manager_->reply_type_ .createData ());
376
- reply->return_value ().getTypeDependencies ().result (out);
376
+ TypeLookup_getTypeDependencies_Result result;
377
+ result.result (out);
378
+ reply->return_value ().getTypeDependencies (result);
377
379
reply->header ().relatedRequestId (request_id);
378
380
reply->header ().remoteEx (exception_code);
379
381
@@ -387,7 +389,9 @@ void TypeLookupRequestListener::answer_request(
387
389
TypeLookup_getTypes_Out& out)
388
390
{
389
391
TypeLookup_Reply* reply = static_cast <TypeLookup_Reply*>(typelookup_manager_->reply_type_ .createData ());
390
- reply->return_value ().getType ().result (out);
392
+ TypeLookup_getTypes_Result result;
393
+ result.result (out);
394
+ reply->return_value ().getType (result);
391
395
reply->header ().relatedRequestId (request_id);
392
396
reply->header ().remoteEx (exception_code);
393
397
You can’t perform that action at this time.
0 commit comments