summaryrefslogtreecommitdiffstats
path: root/test/table_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/table_test.cpp')
-rw-r--r--test/table_test.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/table_test.cpp b/test/table_test.cpp
index 5d370fd..1bb33d0 100644
--- a/test/table_test.cpp
+++ b/test/table_test.cpp
@@ -224,7 +224,6 @@ random_string()
return ret;
}
-
void
benchmark(size_t n)
{
@@ -246,7 +245,6 @@ benchmark(size_t n)
t2.tv_sec=0;
t2.tv_usec=0;
-
/** std::map **/
std::map<string,int> m;
@@ -273,7 +271,6 @@ benchmark(size_t n)
cout << "std::map time to lookup " << n << " values: \t" << delta_t << endl;
-
/** std::set **/
std::set<std::string> s;
@@ -300,7 +297,6 @@ benchmark(size_t n)
cout << "std::set time to lookup " << n << " values: \t" << delta_t << endl;
-
/** sorted std::vector **/
/*std::vector<int> v;
@@ -329,7 +325,6 @@ benchmark(size_t n)
cout << "std::vector (sorted) time to lookup " << n << " values: \t" << delta_t << endl;*/
-
/** Raul::Table **/
Raul::Table<string,int> t(n);
@@ -356,7 +351,6 @@ benchmark(size_t n)
cout << "Raul::Table time to lookup " << n << " values: \t" << delta_t << endl;
-
#ifdef WITH_TR1
/** boost::hash && std::unordered_map **/