Finalized the implementation

This commit is contained in:
2026-09-13 21:18:23 +03:00
parent 3df8ce7717
commit 5a68245703
12 changed files with 209 additions and 3 deletions
+3 -1
View File
@@ -45,5 +45,7 @@ ProgramOptions get_params(int argc, char *argv[])
}
}
return {max_range, num_entries, is_seed_specified ? std::optional<int>(seed): std::nullopt};
using return_type = std::optional<int>;
return {max_range, num_entries, is_seed_specified ? return_type(seed): std::nullopt};
}