From 84698769fc44519a3a6142ec5bff347defb87b60 Mon Sep 17 00:00:00 2001 From: AnthonyFuller <24512050+AnthonyFuller@users.noreply.github.com> Date: Thu, 30 Nov 2023 20:45:49 +0000 Subject: [PATCH] [RPKG] The type is *quite* important --- src/search_localization.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/search_localization.cpp b/src/search_localization.cpp index eeb754a..6df1eef 100644 --- a/src/search_localization.cpp +++ b/src/search_localization.cpp @@ -112,7 +112,7 @@ uint32_t search_dlge_container( } case DLGE_Type::eDEIT_SequenceContainer: { // Already checked the type, now to process the containers. - for (const &childContainer : container.at("containers")) { + for (const json& childContainer : container.at("containers")) { results_count += search_dlge_container(childContainer, rpkg, hash_index, search_term); }