Reorgs added benchmarks (put them in misc folder)
[libcds.git] / benchmark-drivers / cuckoo_map_driver.cpp
1 #include <cds/container/cuckoo_map.h>
2 #include <iostream>
3 #include <string>
4
5 using namespace std;
6
7 int main() {
8   string msg = "Hello world\n";
9   cout << msg;
10   cds::container::CuckooMap<int, int> map;
11   return 0;
12 }