From 25eab11676ff4eaea68034f03c6a0a90fda8666d Mon Sep 17 00:00:00 2001 From: Nathan Hughes Date: Fri, 9 Aug 2024 20:31:16 +0000 Subject: [PATCH] (fix) fix printing typo for typeInfo --- config_utilities/src/factory.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config_utilities/src/factory.cpp b/config_utilities/src/factory.cpp index 9cf3704..f1e247e 100644 --- a/config_utilities/src/factory.cpp +++ b/config_utilities/src/factory.cpp @@ -106,8 +106,8 @@ std::string ModuleInfo::argumentString(const std::string& separator, } std::string ModuleInfo::typeInfo() const { - return "BaseT='" + base_type + (underlying_base.empty() ? "" : " (underlying: '" + base_type + "'") + - "' and ConstructorArguments={" + argumentString(", ", "'") + "}"; + return "BaseT='" + base_type + "'" + (underlying_base.empty() ? "" : " (underlying: '" + underlying_base + "')") + + " and ConstructorArguments={" + argumentString(", ", "'") + "}"; } std::string ModuleInfo::signature() const {