reverted to prior semicolon-lessness
authorFred T. Hamster <fred@feistymeow.org>
Mon, 9 Feb 2026 15:26:07 +0000 (10:26 -0500)
committerFred T. Hamster <fred@feistymeow.org>
Mon, 9 Feb 2026 15:26:07 +0000 (10:26 -0500)
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
nucleus/library/nodes/symbol_tree.cpp

index 39fe0512c761296ce9b8101d223cfc11e5ad26b4..4a2c0c90da88464f315f8b7cf6bc9cc3e387c00d 100644 (file)
@@ -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.");
index afcb02258202328e5bc88a434eba11bc7c433da3..ba5c33f948b8a4c15bedeb13c342b9986e4aad5f 100644 (file)
@@ -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()