hashmap-bench/main.cpp
2020-02-03 15:10:29 -03:00

15 lines
312 B
C++

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