Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix unused args in littletest
  • Loading branch information
etr committed Mar 8, 2021
commit afc0350bc71ff2d3806c6e8c62e7c66c33418740
4 changes: 2 additions & 2 deletions test/littletest.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ class suite
}

suite() { }
suite(const suite<suite_impl>& s) { }
suite(const suite<suite_impl>&) { }
};

double calculate_duration(timeval* before, timeval* after)
Expand Down Expand Up @@ -581,7 +581,7 @@ class test : public test_base
}
protected:
test() { }
test(const test<test_impl>& t) { }
test(const test<test_impl>&) { }

friend class test_runner;
};
Expand Down