diff src/pt-except.h @ 2988:daa1ed1f5462

[project @ 1997-05-16 07:23:15 by jwe]
author jwe
date Fri, 16 May 1997 07:23:17 +0000
parents 20f5cec4f11c
children 0689afb1d001
line wrap: on
line diff
--- a/src/pt-except.h	Fri May 16 07:05:49 1997 +0000
+++ b/src/pt-except.h	Fri May 16 07:23:17 1997 +0000
@@ -64,6 +64,12 @@
 
   // The code to execute if an error occurs in the first block.
   tree_statement_list *catch_code;
+
+  // No copying!
+
+  tree_try_catch_command (const tree_try_catch_command&);
+
+  tree_try_catch_command& operator = (const tree_try_catch_command&);
 };
 
 // Simple exception handling.
@@ -99,6 +105,12 @@
   // The body of code to execute no matter what happens in the first
   // body of code.
   tree_statement_list *cleanup_code;
+
+  // No copying!
+
+  tree_unwind_protect_command (const tree_unwind_protect_command&);
+
+  tree_unwind_protect_command& operator = (const tree_unwind_protect_command&);
 };
 
 #endif