Apply suggestions from code review

This commit is contained in:
J. Nick Koston
2026-01-19 17:44:25 -10:00
committed by GitHub
parent 9245c691d0
commit 11fb46ad11

View File

@@ -26,8 +26,8 @@ template<typename... X> class TemplatableStringValue : public TemplatableValue<s
private:
// Helper to convert value to string - handles the case where value is already a string
template<typename T> static std::string value_to_string(T &&val) {
return to_string(std::forward<T>(val));
} // NOLINT
return to_string(std::forward<T>(val)); // NOLINT
}
// Overloads for string types - needed because std::to_string doesn't support them
static std::string value_to_string(char *val) {