Skip to content

Commit

Permalink
Remove duplicates introduced by resolving merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
lkomali committed Jul 23, 2024
1 parent b51eaf6 commit 3346cfe
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/c++/perf_analyzer/test_command_line_parser.cc
Original file line number Diff line number Diff line change
Expand Up @@ -372,15 +372,10 @@ void
CheckValidRange(
std::vector<char*>& args, char* option_name, TestCLParser& parser,
PAParamsPtr& act, bool& using_range, Range<uint64_t>& range,
PAParamsPtr& exp)
PAParamsPtr& act, bool& using_range, Range<uint64_t>& range,
size_t* max_threads)
PAParamsPtr& act, bool& using_range, Range<uint64_t>& range,
size_t* max_threads)
{
SUBCASE("start:end provided")
{
*max_threads = 400;
*max_threads = 400;
args.push_back(option_name);
args.push_back("100:400"); // start:end
Expand All @@ -399,7 +394,6 @@ CheckValidRange(

SUBCASE("start:end:step provided")
{
*max_threads = 400;
*max_threads = 400;
args.push_back(option_name);
args.push_back("100:400:10"); // start:end:step
Expand Down

0 comments on commit 3346cfe

Please sign in to comment.