Prepare for running

This commit is contained in:
Valk Richard Li
2019-09-25 07:01:05 -05:00
committed by GitHub
parent 36353389f8
commit 7f5c1c2125
2 changed files with 19 additions and 1 deletions
+8
View File
@@ -50,4 +50,12 @@ nasal_hash::nasal_hash(const nasal_hash& temp)
elem_name=temp.elem_name;
}
nasal_function::nasal_function()
{
root.clear();
}
nasal_function::nasal_function(const nasal_function& temp)
{
root=temp.root;
}
#endif