From 62c7107233b431cd7867d726757db163baaa00b6 Mon Sep 17 00:00:00 2001 From: starnakin Date: Wed, 11 Oct 2023 18:13:18 +0000 Subject: [PATCH] clean: remove debug print --- src/utils.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/utils.cpp b/src/utils.cpp index 1e779d2..795f8a3 100644 --- a/src/utils.cpp +++ b/src/utils.cpp @@ -42,7 +42,6 @@ static int get_quantity(std::string& str) quantity = quantity * 10 + str[i] - '0'; len++; } - std::cout << str << std::endl; str.erase(i - len, len); return quantity; } @@ -50,7 +49,6 @@ static int get_quantity(std::string& str) int get_article_data(std::string& str, unsigned int& quantity, float& price) { price = get_price(str); - std::cout << str << std::endl; quantity = get_quantity(str); return 0;