commit | dbef6dc8e2e32160b9e826ca0f32b9a00bb759df | [log] [tgz] |
---|---|---|
author | Junxiao Shi <git@mail1.yoursunny.com> | Mon Aug 15 02:58:36 2016 +0000 |
committer | Junxiao Shi <git@mail1.yoursunny.com> | Mon Aug 15 02:58:36 2016 +0000 |
tree | daa6e2a3680132c682d608bc6d78fd02b2fa23f2 | |
parent | 3248205bb7ce1010aaf35c42101929fe585067ed [diff] [blame] |
table: Pit::erase accepts Entry* instead of shared_ptr refs #3164 Change-Id: I9ff47c80865da42b09870c632707dffd78ed76b9
diff --git a/tests/other/pit-fib-benchmark.cpp b/tests/other/pit-fib-benchmark.cpp index c10d7f5..e6c907f 100644 --- a/tests/other/pit-fib-benchmark.cpp +++ b/tests/other/pit-fib-benchmark.cpp
@@ -128,7 +128,7 @@ } if (i >= gap3 + gap4) { // delete PIT entry - m_pit.erase(pitEntries[i - gap3 - gap4]); + m_pit.erase(pitEntries[i - gap3 - gap4].get()); } }