remove debug print

This commit is contained in:
:^) 2024-10-16 17:33:58 +02:00
parent 537cab18ed
commit 467580e1b9
1 changed files with 0 additions and 1 deletions

View File

@ -65,7 +65,6 @@ public:
if constexpr (std::is_same_v<T, std::string>) { if constexpr (std::is_same_v<T, std::string>) {
return value; return value;
} else { } else {
std::cout << std::format("the value is: {}", value);
return std::stoi(value); return std::stoi(value);
} }
} }