commit | e8220dbcf226aa916de293c55815286f238a89bb | [log] [tgz] |
---|---|---|
author | Michal Vasko <mvasko@cesnet.cz> | Wed Jun 02 15:39:05 2021 +0200 |
committer | Michal Vasko <mvasko@cesnet.cz> | Wed Jun 02 15:39:05 2021 +0200 |
tree | 3cc94e3b26a0c95c5cf9ee7a545efbbdbd7b7101 | |
parent | 13588641076cbbced412c383ef6901d20fbe835f [diff] [blame] |
schema compile OPTIMIZE separate tasks performed only once ... which do not need to be performed for every recompilation.
diff --git a/src/tree_schema.c b/src/tree_schema.c index ac876d1..93f2979 100644 --- a/src/tree_schema.c +++ b/src/tree_schema.c
@@ -832,7 +832,7 @@ mod->implemented = 1; /* compile the schema */ - LY_CHECK_RET(lys_compile(mod, 0, unres)); + LY_CHECK_RET(lys_compile(mod, 0, 0, unres)); /* new module is implemented and compiled */ unres->full_compilation = 0;