diff src/symtab.h @ 4214:b9317f3973ec

[project @ 2002-12-04 04:57:01 by jwe]
author jwe
date Wed, 04 Dec 2002 04:57:01 +0000
parents e96f52432059
children 90e44267e8cf
line wrap: on
line diff
--- a/src/symtab.h	Wed Dec 04 04:19:15 2002 +0000
+++ b/src/symtab.h	Wed Dec 04 04:57:01 2002 +0000
@@ -30,8 +30,7 @@
 #include <cassert>
 
 #include <string>
-
-#include "SLStack.h"
+#include <stack>
 
 #include "oct-alloc.h"
 #include "str-vec.h"
@@ -365,8 +364,8 @@
 
   // This should maybe be one stack with a structure containing all the
   // items we need to save for recursive calls...
-  SLStack <symbol_def *> context;
-  SLStack <unsigned int> global_link_context;
+  std::stack <symbol_def *> context;
+  std::stack <unsigned int> global_link_context;
 
   bool read_only_error (const char *action);