hashmap-bench/main.cpp

15 lines
312 B
C++
Raw Normal View History

2020-02-03 18:10:29 +00:00
#include <iostream>
#include <unordered_map>
#include <functional>
#include <fstream>
#include "./src/includes/aggregate_tests.h"
// typedef std::unordered_map<int,int> map;
int main() {
string_test(std::unordered_map<std::string, std::string>{}, 10);
int_test(std::unordered_map<int, int>{}, 10);
}