From: Fred T. Hamster Date: Mon, 9 Feb 2026 15:26:07 +0000 (-0500) Subject: reverted to prior semicolon-lessness X-Git-Tag: 2.140.190^2~13 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=fc3aa8ccc1e315bda55527d75d5b8adb2301f9be;p=feisty_meow.git 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. --- 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()