diff src/unwind-prot.h @ 4214:b9317f3973ec

[project @ 2002-12-04 04:57:01 by jwe]
author jwe
date Wed, 04 Dec 2002 04:57:01 +0000
parents 5719210fff4c
children e35b034d3523
line wrap: on
line diff
--- a/src/unwind-prot.h
+++ b/src/unwind-prot.h
@@ -30,8 +30,7 @@
 #include <cstddef>
 
 #include <string>
-
-#include <SLStack.h>
+#include <stack>
 
 class
 unwind_elem
@@ -111,7 +110,7 @@
 
   static void save_var (void *ptr, void *value, size_t size);
 
-  static SLStack<unwind_elem> list;
+  static std::stack<unwind_elem> elt_list;
 };
 
 // We could get by without these macros, but they are nice to have...