Mercurial > hg > octave-lyh
diff src/pt-jump.h @ 2988:daa1ed1f5462
[project @ 1997-05-16 07:23:15 by jwe]
author | jwe |
---|---|
date | Fri, 16 May 1997 07:23:17 +0000 |
parents | aa9d0c0e0458 |
children | 6e86256e9c54 |
line wrap: on
line diff
--- a/src/pt-jump.h +++ b/src/pt-jump.h @@ -48,6 +48,14 @@ void accept (tree_walker& tw); static int breaking; + +private: + + // No copying! + + tree_break_command (const tree_break_command&); + + tree_break_command& operator = (const tree_break_command&); }; // Continue. @@ -67,6 +75,14 @@ void accept (tree_walker& tw); static int continuing; + +private: + + // No copying! + + tree_continue_command (const tree_continue_command&); + + tree_continue_command& operator = (const tree_continue_command&); }; // Return. @@ -86,6 +102,14 @@ void accept (tree_walker& tw); static int returning; + +private: + + // No copying! + + tree_return_command (const tree_return_command&); + + tree_return_command& operator = (const tree_return_command&); }; #endif