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; +}