From b2b96d9901025e9a2a8c2cf2b7eb04129ec49575 Mon Sep 17 00:00:00 2001 From: Wenyi Kuang Date: Tue, 14 Jan 2025 18:32:51 -0700 Subject: [PATCH] Eliminated ambiguous initialization of m_provenanceRequired to fix the unittest: RemoteBCL_BCLSearchResult --- src/utilities/bcl/BCL.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utilities/bcl/BCL.hpp b/src/utilities/bcl/BCL.hpp index 278ed1c3d2b..caeb8d41a88 100644 --- a/src/utilities/bcl/BCL.hpp +++ b/src/utilities/bcl/BCL.hpp @@ -196,7 +196,7 @@ class UTILITIES_API BCLSearchResult std::string m_modelerDescription; std::string m_fidelityLevel; std::string m_componentType; - bool m_provenanceRequired; + bool m_provenanceRequired = false; std::vector m_provenances; std::vector m_tags; std::vector m_attributes;