From fc3aa8ccc1e315bda55527d75d5b8adb2301f9be Mon Sep 17 00:00:00 2001 From: "Fred T. Hamster" Date: Mon, 9 Feb 2026 10:26:07 -0500 Subject: [PATCH] reverted to prior semicolon-lessness the FUNCDEF macro should compile fine with or without a semicolon after it. had momentarily added semicolons during build problems with callstack tracker, but don't want unnecessary changes going in, or a bad standard for requiring semicolons to be forced on anyone. --- nucleus/library/nodes/path.cpp | 2 +- nucleus/library/nodes/symbol_tree.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nucleus/library/nodes/path.cpp b/nucleus/library/nodes/path.cpp index 39fe0512..4a2c0c90 100644 --- a/nucleus/library/nodes/path.cpp +++ b/nucleus/library/nodes/path.cpp @@ -86,7 +86,7 @@ outcome path::push(int index) bool path::generate_path(node *to_locate, path &to_follow) const { - FUNCDEF("generate_path"); + FUNCDEF("generate_path") if (to_locate || to_follow.current()) {} LOG("hmmm: path::generate_path is not implemented."); diff --git a/nucleus/library/nodes/symbol_tree.cpp b/nucleus/library/nodes/symbol_tree.cpp index afcb0225..ba5c33f9 100644 --- a/nucleus/library/nodes/symbol_tree.cpp +++ b/nucleus/library/nodes/symbol_tree.cpp @@ -54,7 +54,7 @@ symbol_tree::symbol_tree(const astring &node_name, int estimated_elements) _associations(new symbol_tree_associations(estimated_elements)), _name(new astring(node_name)) { - FUNCDEF("constructor"); + FUNCDEF("constructor") } symbol_tree::~symbol_tree() -- 2.34.1