From e155708ddaf9772675486ad8d2f8521a524dd65a Mon Sep 17 00:00:00 2001 From: Leonardo de Moura Date: Mon, 2 Jun 2014 14:46:13 -0700 Subject: [PATCH] feat(util): add (functional) name_map Signed-off-by: Leonardo de Moura --- src/util/name_map.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/util/name_map.h diff --git a/src/util/name_map.h b/src/util/name_map.h new file mode 100644 index 000000000..d0f95667d --- /dev/null +++ b/src/util/name_map.h @@ -0,0 +1,12 @@ +/* +Copyright (c) 2014 Microsoft Corporation. All rights reserved. +Released under Apache 2.0 license as described in the file LICENSE. + +Author: Leonardo de Moura +*/ +#pragma once +#include "util/rb_map.h" +#include "util/name.h" +namespace lean { +template using name_map = rb_map; +}