From df8f6d06efa23aaeea87d8f4ed759433adf2a073 Mon Sep 17 00:00:00 2001 From: Miguel Company Date: Wed, 1 Sep 2021 12:58:39 +0200 Subject: [PATCH] Refs 12404. Uncrustify. Signed-off-by: Miguel Company --- .../subscriber/history/DataReaderHistory.cpp | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/cpp/fastdds/subscriber/history/DataReaderHistory.cpp b/src/cpp/fastdds/subscriber/history/DataReaderHistory.cpp index fabf0a0a363..bc56f611891 100644 --- a/src/cpp/fastdds/subscriber/history/DataReaderHistory.cpp +++ b/src/cpp/fastdds/subscriber/history/DataReaderHistory.cpp @@ -61,16 +61,16 @@ static void get_sample_info( switch (change->kind) { - case eprosima::fastrtps::rtps::ALIVE: - info.instance_state = ALIVE_INSTANCE_STATE; - break; - case eprosima::fastrtps::rtps::NOT_ALIVE_DISPOSED: - info.instance_state = NOT_ALIVE_DISPOSED_INSTANCE_STATE; - break; - default: - //TODO [ILG] change this if the other kinds ever get implemented - info.instance_state = ALIVE_INSTANCE_STATE; - break; + case eprosima::fastrtps::rtps::ALIVE: + info.instance_state = ALIVE_INSTANCE_STATE; + break; + case eprosima::fastrtps::rtps::NOT_ALIVE_DISPOSED: + info.instance_state = NOT_ALIVE_DISPOSED_INSTANCE_STATE; + break; + default: + //TODO [ILG] change this if the other kinds ever get implemented + info.instance_state = ALIVE_INSTANCE_STATE; + break; } }