forked from MassiveAtoms/hashmap-bench
15 lines
312 B
C++
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);
|
|
} |