# HG changeset patch # User jwe # Date 797475003 0 # Node ID 766e2a1a4e7b2790eae68dd39c0e5cd7e9a1e4e2 # Parent 2457d4ba0691498d47d85a26aefa0966dfb05929 [project @ 1995-04-10 00:48:19 by jwe] diff -r 2457d4ba0691 -r 766e2a1a4e7b src/pt-misc.h --- a/src/pt-misc.h Mon Apr 10 00:41:32 1995 +0000 +++ b/src/pt-misc.h Mon Apr 10 00:50:03 1995 +0000 @@ -96,9 +96,12 @@ tree_statement_list : public SLList, public tree_print_code { public: - tree_statement_list (void) : SLList () { } - tree_statement_list (tree_statement *s) : SLList () - { append (s); } + tree_statement_list (void) + : SLList (), tree_print_code () { } + + tree_statement_list (tree_statement *s) + : SLList (), tree_print_code () + { append (s); } ~tree_statement_list (void) { @@ -123,9 +126,12 @@ tree_argument_list : public SLList, public tree_print_code { public: - tree_argument_list (void) : SLList () { } - tree_argument_list (tree_expression *t) : SLList () - { append (t); } + tree_argument_list (void) + : SLList (), tree_print_code () { } + + tree_argument_list (tree_expression *t) + : SLList (), tree_print_code () + { append (t); } ~tree_argument_list (void) { @@ -149,14 +155,16 @@ tree_parameter_list : public SLList, public tree_print_code { public: - tree_parameter_list (void) : SLList () - { marked_for_varargs = 0; } + tree_parameter_list (void) + : SLList (), tree_print_code () + { marked_for_varargs = 0; } - tree_parameter_list (tree_identifier *t) : SLList () - { - marked_for_varargs = 0; - append (t); - } + tree_parameter_list (tree_identifier *t) + : SLList (), tree_print_code () + { + marked_for_varargs = 0; + append (t); + } ~tree_parameter_list (void) { @@ -205,9 +213,11 @@ public tree_print_code { public: - tree_return_list (void) : SLList () { } + tree_return_list (void) + : SLList (), tree_print_code () { } + tree_return_list (tree_index_expression *t) - : SLList () + : SLList (), tree_print_code () { append (t); } ~tree_return_list (void) @@ -272,9 +282,12 @@ tree_global_init_list : public SLList, public tree_print_code { public: - tree_global_init_list (void) : SLList () { } - tree_global_init_list (tree_global *t) : SLList () - { append (t); } + tree_global_init_list (void) + : SLList (), tree_print_code () { } + + tree_global_init_list (tree_global *t) + : SLList (), tree_print_code () + { append (t); } ~tree_global_init_list (void) { @@ -333,9 +346,12 @@ tree_if_command_list : public SLList, public tree_print_code { public: - tree_if_command_list (void) : SLList () { } - tree_if_command_list (tree_if_clause *t) : SLList () - { append (t); } + tree_if_command_list (void) + : SLList (), tree_print_code () { } + + tree_if_command_list (tree_if_clause *t) + : SLList (), tree_print_code () + { append (t); } ~tree_if_command_list (void) { diff -r 2457d4ba0691 -r 766e2a1a4e7b src/pt-plot.h --- a/src/pt-plot.h Mon Apr 10 00:41:32 1995 +0000 +++ b/src/pt-plot.h Mon Apr 10 00:50:03 1995 +0000 @@ -185,9 +185,9 @@ subplot_list : public SLList, public tree_print_code { public: - subplot_list (void) : SLList () { } + subplot_list (void) : SLList (), tree_print_code () { } - subplot_list (subplot *t) : SLList () + subplot_list (subplot *t) : SLList (), tree_print_code () { append (t); } ~subplot_list (void)