lean2/src/util/name_map.h
Leonardo de Moura 1e4fa76a47 feat(util/name_map): add template alias
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2013-12-18 11:34:40 -08:00

12 lines
331 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_map = std::unordered_map<name, T, name_hash, name_eq>;
}