fix dev changes

This commit is contained in:
Timofey Khoruzhii 2023-05-09 01:14:08 +03:00
parent 1269c07951
commit 474c035b21
2 changed files with 2 additions and 7 deletions

View file

@ -126,12 +126,7 @@ int main(int argc, char* argv[]) {
if (getenv("CL_SUGGESTION") != nullptr) { if (getenv("CL_SUGGESTION") != nullptr) {
auto suggestions = parser.GetPossibleAdditions(argc, argv); auto suggestions = parser.GetPossibleAdditions(argc, argv);
int x = 0;
for (auto& suggestion : suggestions) { for (auto& suggestion : suggestions) {
x++;
if (x == 7) {
break;
}
std::cout << suggestion << " "; std::cout << suggestion << " ";
} }
} else { } else {