diff options
author | Fridrich Strba <fridrich.strba@bluewin.ch> | 2011-02-03 19:00:35 -0700 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-02-04 03:12:16 +0100 |
commit | 7d5657d38d9cc9725d7a84954b3929bf2d35579f (patch) | |
tree | 828698a1d40f750e40cc4ac26841f1ed541215d6 | |
parent | ed9cbca624c3938707589cf2c23c5ac92e4a7b18 (diff) |
slist -> list
-rw-r--r-- | autodoc/source/inc/estack.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/autodoc/source/inc/estack.hxx b/autodoc/source/inc/estack.hxx index b9607fe1..bd926d3b 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() {} |