chore(library/compiler/vm_compiler): hide API
This commit is contained in:
parent
c9da2f2542
commit
1cee5fbfea
2 changed files with 1 additions and 2 deletions
|
|
@ -315,7 +315,7 @@ public:
|
|||
}
|
||||
};
|
||||
|
||||
environment vm_compile(environment const & env, buffer<pair<name, expr>> const & procs) {
|
||||
static environment vm_compile(environment const & env, buffer<pair<name, expr>> const & procs) {
|
||||
environment new_env = env;
|
||||
for (auto const & p : procs) {
|
||||
new_env = reserve_vm_index(new_env, p.first, p.second);
|
||||
|
|
|
|||
|
|
@ -8,7 +8,6 @@ Author: Leonardo de Moura
|
|||
#include "kernel/environment.h"
|
||||
|
||||
namespace lean {
|
||||
environment vm_compile(environment const & env, buffer<pair<name, expr>> const & procs);
|
||||
environment vm_compile(environment const & env, declaration const & d);
|
||||
void initialize_vm_compiler();
|
||||
void finalize_vm_compiler();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue