replace hash_map and hash_set by unordered_map and unordered_set

This commit is contained in:
Laurent Perron
2017-04-27 17:34:24 +02:00
parent 4db7d3bc4e
commit 8c08d72260
95 changed files with 190 additions and 129 deletions

View File

@@ -19,7 +19,7 @@
#ifndef OR_TOOLS_EXAMPLES_FAP_PARSER_H_
#define OR_TOOLS_EXAMPLES_FAP_PARSER_H_
#include "ortools/base/hash.h"
#include <unordered_map>
#include <map>
#include <string>
#include <vector>