fix(library/register_module): missing open_unifier
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
c7c5e41653
commit
73666af4a4
1 changed files with 2 additions and 0 deletions
|
@ -13,6 +13,7 @@ Author: Leonardo de Moura
|
||||||
#include "library/placeholder.h"
|
#include "library/placeholder.h"
|
||||||
#include "library/aliases.h"
|
#include "library/aliases.h"
|
||||||
#include "library/choice.h"
|
#include "library/choice.h"
|
||||||
|
#include "library/unifier.h"
|
||||||
#include "library/scoped_ext.h"
|
#include "library/scoped_ext.h"
|
||||||
// #include "library/hop_match.h"
|
// #include "library/hop_match.h"
|
||||||
|
|
||||||
|
@ -26,6 +27,7 @@ inline void open_core_module(lua_State * L) {
|
||||||
open_aliases(L);
|
open_aliases(L);
|
||||||
open_choice(L);
|
open_choice(L);
|
||||||
open_scoped_ext(L);
|
open_scoped_ext(L);
|
||||||
|
open_unifier(L);
|
||||||
// open_hop_match(L);
|
// open_hop_match(L);
|
||||||
}
|
}
|
||||||
inline void register_core_module() {
|
inline void register_core_module() {
|
||||||
|
|
Loading…
Reference in a new issue