summaryrefslogtreecommitdiff
path: root/autodoc
diff options
context:
space:
mode:
authorFridrich Strba <fridrich.strba@bluewin.ch>2011-02-03 19:00:35 -0700
committerFridrich Štrba <fridrich.strba@bluewin.ch>2011-02-04 03:12:16 +0100
commit1c93537c2ce705590b8fb1dbe5bbc7e543eff90d (patch)
treede48404e5a05b76849d0d53be1cc55aadaf8f49e /autodoc
parentc7effb5f5d396d2ddef5beaabb68c1dbffdbb3ac (diff)
slist -> list
Diffstat (limited to 'autodoc')
-rw-r--r--autodoc/source/inc/estack.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/autodoc/source/inc/estack.hxx b/autodoc/source/inc/estack.hxx
index 5c1b76ab7446..1cb5855a1122 100644
--- a/autodoc/source/inc/estack.hxx
+++ b/autodoc/source/inc/estack.hxx
@@ -33,23 +33,23 @@
// USED SERVICES
// BASE CLASSES
-#include <slist>
+#include <list>
// COMPONENTS
// PARAMETERS
template <class ELEM>
-class EStack : private std::slist<ELEM>
+class EStack : private std::list<ELEM>
{
private:
- typedef std::slist<ELEM> base;
+ typedef std::list<ELEM> base;
const base & Base() const { return *this; }
base & Base() { return *this; }
public:
typedef ELEM value_type;
- typedef typename std::slist<ELEM>::size_type size_type;
+ typedef typename std::list<ELEM>::size_type size_type;
// LIFECYCLE
EStack() {}