diff options
author | Marcel Metz <mmetz@adrian-broher.net> | 2011-12-05 20:08:35 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2011-12-05 22:53:17 +0100 |
commit | f5b63844cc6a4b96fcf0db0c0c9c1194847fc914 (patch) | |
tree | f627bfa5ff29940a8b7af8d76e68652cdc06430b /starmath/inc | |
parent | 6c6bc18961eb74074183a68d8dbea7e4bbefe059 (diff) |
Replace SmNodeStack with std::stack< SmNode* >
Diffstat (limited to 'starmath/inc')
-rw-r--r-- | starmath/inc/parse.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/starmath/inc/parse.hxx b/starmath/inc/parse.hxx index b8834becb8a3..5e4ce31db759 100644 --- a/starmath/inc/parse.hxx +++ b/starmath/inc/parse.hxx @@ -30,7 +30,6 @@ #include <vcl/svapp.hxx> -#include <tools/stack.hxx> #include <tools/string.hxx> #include <set> @@ -167,7 +166,7 @@ struct SmErrorDesc }; -DECLARE_STACK(SmNodeStack, SmNode *) +typedef ::std::stack< SmNode* > SmNodeStack; typedef ::std::vector< SmErrorDesc* > SmErrDescList; /**************************************************************************/ |