From c9ac8ee3ab12eb44c28011797337dd117e034395 Mon Sep 17 00:00:00 2001 From: Mugr Rex Date: Sat, 15 Apr 2023 01:37:59 +0200 Subject: [PATCH] Comment fix --- src/extractor/node_based_graph_factory.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/extractor/node_based_graph_factory.cpp b/src/extractor/node_based_graph_factory.cpp index 481386389..9819a9778 100644 --- a/src/extractor/node_based_graph_factory.cpp +++ b/src/extractor/node_based_graph_factory.cpp @@ -210,8 +210,8 @@ void NodeBasedGraphFactory::CompressAnnotationData() // remove unreferenced entries, shifting other entries to the front const auto new_end = std::remove_if(annotation_data.begin(), annotation_data.end(), [&](auto const &data) { - // both elements are considered equal (to remove the - // second one) if the annotation mapping of the second one is + // both elements are considered equal (to remove the second + // one) if the annotation mapping of the second one is // invalid return data.name_id == INVALID_NAMEID; });