aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/stllike/uniq_by_sort_map_hash.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'vespalib/src/tests/stllike/uniq_by_sort_map_hash.cpp')
-rw-r--r--vespalib/src/tests/stllike/uniq_by_sort_map_hash.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/vespalib/src/tests/stllike/uniq_by_sort_map_hash.cpp b/vespalib/src/tests/stllike/uniq_by_sort_map_hash.cpp
index f073a013ba3..a070bcd15cf 100644
--- a/vespalib/src/tests/stllike/uniq_by_sort_map_hash.cpp
+++ b/vespalib/src/tests/stllike/uniq_by_sort_map_hash.cpp
@@ -236,7 +236,8 @@ size_t benchSort(const std::vector<Slot *> & vOrg)
static char _type;
-int runBenchMark(const std::vector<Slot *> * indirectSlotVector)
+void*
+runBenchMark(const std::vector<Slot *> * indirectSlotVector)
{
int uniq(0);
switch (_type) {
@@ -251,7 +252,7 @@ int runBenchMark(const std::vector<Slot *> * indirectSlotVector)
case 'J': uniq = benchHashVespaLibIntelligentAndFast(*indirectSlotVector); break;
default: break;
}
- return uniq;
+ return reinterpret_cast<void *>(uniq);
}
int main(int argc, char *argv[])