summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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() {}