From 76505330c5529dc6ee02b0d856856f4f40a3304f Mon Sep 17 00:00:00 2001 From: Miguel Company Date: Fri, 27 Sep 2024 10:35:17 +0200 Subject: [PATCH] Fix build Signed-off-by: Miguel Company --- src/cpp/rtps/reader/reader_utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpp/rtps/reader/reader_utils.cpp b/src/cpp/rtps/reader/reader_utils.cpp index 1b4fe88abe..67b3c98b53 100644 --- a/src/cpp/rtps/reader/reader_utils.cpp +++ b/src/cpp/rtps/reader/reader_utils.cpp @@ -35,7 +35,7 @@ bool change_is_relevant_for_filter( // This is only allowed for UNREGISTERED and DISPOSED changes, where the instanceHandle is used to identify the // instance to unregister or dispose. if ((nullptr == change.serializedPayload.data) && - ((fastdds::rtps::ALIVE == change.kind) || !change.instanceHandle.isDefined())) + ((fastrtps::rtps::ALIVE == change.kind) || !change.instanceHandle.isDefined())) { ret = false; }