Skip to content

Commit

Permalink
(fix) fix printing typo for typeInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanhhughes committed Aug 9, 2024
1 parent 4978d96 commit 25eab11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config_utilities/src/factory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 25eab11

Please sign in to comment.