summaryrefslogtreecommitdiffstats
path: root/googletest/src
diff options
context:
space:
mode:
authorAlexander Nikforov <nikiforov.al@gmail.com>2022-07-01 22:33:13 (GMT)
committerAlexander Nikforov <nikiforov.al@gmail.com>2022-07-01 22:33:13 (GMT)
commit7107c441885900fedb8458a96bddca16e9768573 (patch)
tree0cc76011b4a44ece49f2745d9a755079cc9a506c /googletest/src
parent4219e7254cb8c473f57f6065bd13d1520d7b708f (diff)
downloadgoogletest-7107c441885900fedb8458a96bddca16e9768573.zip
googletest-7107c441885900fedb8458a96bddca16e9768573.tar.gz
googletest-7107c441885900fedb8458a96bddca16e9768573.tar.bz2
cleanup from unique_ptr branchrefs/pull/3928/head
Diffstat (limited to 'googletest/src')
-rw-r--r--googletest/src/gtest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/src/gtest.cc b/googletest/src/gtest.cc
index 6f31dd2..9989f71 100644
--- a/googletest/src/gtest.cc
+++ b/googletest/src/gtest.cc
@@ -6245,7 +6245,7 @@ void UnitTestImpl::UnshuffleTests() {
// GetCurrentOsStackTraceExceptTop(..., 1), Foo() will be included in
// the trace but Bar() and GetCurrentOsStackTraceExceptTop() won't.
GTEST_NO_INLINE_ GTEST_NO_TAIL_CALL_ std::string
-GetCurrentOsStackTraceExceptTop(UnitTest* /*unit_test*/, int skip_count) {
+GetCurrentOsStackTraceExceptTop(int skip_count) {
// We pass skip_count + 1 to skip this wrapper function in addition
// to what the user really wants to skip.
return GetUnitTestImpl()->CurrentOsStackTraceExceptTop(skip_count + 1);