FunctionManager: fix recursion issue

This commit is contained in:
Simon Gardling 2025-12-05 00:52:02 -05:00
parent f218ff26c7
commit 8ee03d953f
Signed by: titaniumtown
GPG Key ID: 9AB28AC10ECE533D

View File

@ -18,7 +18,7 @@ pub struct FunctionManager {
impl Default for FunctionManager {
fn default() -> Self {
let mut d = Self {
..Default::default()
functions: Vec::new()
};
d.push_empty();
d