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());
     }
   }