gbranden pushed a commit to branch master
in repository groff.

commit 65e0c79915ab4d2261b37d5863f426a2c27d05ee
Author: G. Branden Robinson <[email protected]>
AuthorDate: Tue May 13 08:07:20 2025 -0500

    src/roff/troff/node.cpp: Drop mistaken annotation.
    
    Corresponding declaration from node.h:
    
      hyphen_list(unsigned char code,
                  hyphen_list * /* p */ = 0 /* nullptr */);
---
 src/roff/troff/node.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/roff/troff/node.cpp b/src/roff/troff/node.cpp
index 25bf52635..e36af7d98 100644
--- a/src/roff/troff/node.cpp
+++ b/src/roff/troff/node.cpp
@@ -6096,7 +6096,7 @@ node *overstrike_node::add_self(node *more_nodes, 
hyphen_list **p)
 
 hyphen_list *overstrike_node::get_hyphen_list(hyphen_list *tail, int *)
 {
-  return new hyphen_list(0 /* nullptr */, tail);
+  return new hyphen_list(0, tail);
 }
 
 bool bracket_node::is_same_as(node *nd)

_______________________________________________
groff-commit mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/groff-commit

Reply via email to