lean4-htt/src/util/name_hash_map.h
2019-02-05 14:36:02 -08:00

12 lines
342 B
C++

/*
Copyright (c) 2013 Microsoft Corporation. All rights reserved.
Released under Apache 2.0 license as described in the file LICENSE.
Author: Leonardo de Moura
*/
#pragma once
#include <unordered_map>
#include "util/name.h"
namespace lean {
template<typename T> using name_hash_map = std::unordered_map<name, T, name_hash_fn, name_eq_fn>;
}