# HG changeset patch # User Jaroslav Hajek # Date 1245823663 -7200 # Node ID 8bec23396924aaac06ff26cf9963efe0beec7bdc # Parent d57f0c56195f265b719d959deb8bb749077668d8 hide copy constructors in unwind-prot.h diff -r d57f0c56195f -r 8bec23396924 src/ChangeLog --- a/src/ChangeLog Tue Jun 23 15:48:40 2009 +0200 +++ b/src/ChangeLog Wed Jun 24 08:07:43 2009 +0200 @@ -1,3 +1,8 @@ +2009-06-24 Jaroslav Hajek + + * unwind-prot.h (restore_var, restore_mem): Hide also copy + constructors. + 2009-06-23 Jaroslav Hajek * quit.h (octave_quit_exception): Delete. diff -r d57f0c56195f -r 8bec23396924 src/unwind-prot.h --- a/src/unwind-prot.h Tue Jun 23 15:48:40 2009 +0200 +++ b/src/unwind-prot.h Wed Jun 24 08:07:43 2009 +0200 @@ -61,6 +61,7 @@ private: // No copying! + restore_var (const restore_var&); void operator = (const restore_var&); T *rptr, rval; @@ -84,6 +85,7 @@ private: // No copying! + restore_mem (const restore_mem&); void operator = (const restore_mem&); void *rptr, *sptr;