From a1c7dbfea1596f820f27c55ba8a8a271bfa1f65c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Montan=CC=83ana?= Date: Fri, 16 Feb 2024 09:46:22 +0100 Subject: [PATCH] Remove space from header in b_list --- src/Platform/b_list.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Platform/b_list.cc b/src/Platform/b_list.cc index 52b06d4..eb2fecf 100644 --- a/src/Platform/b_list.cc +++ b/src/Platform/b_list.cc @@ -30,7 +30,7 @@ int main(int argc, char** argv) locale mylocale(std::cout.getloc(), new separated); locale::global(mylocale); std::cout.imbue(mylocale); - std::cout << Colors::GREEN() << " # Dataset Sampl. Feat. Cls. Balance" << std::endl; + std::cout << Colors::GREEN() << " # Dataset Sampl. Feat. Cls Balance" << std::endl; std::string balanceBars = std::string(BALANCE_LENGTH, '='); std::cout << "=== ============================== ====== ===== === " << balanceBars << std::endl; bool odd = true;