#include "wx/vector.h"
-#if wxUSE_STL
+#if wxUSE_STD_CONTAINERS
#include <stack>
#define wxStack std::stack
-#else // !wxUSE_STL
+#else // !wxUSE_STD_CONTAINERS
// Notice that unlike std::stack, wxStack currently always uses wxVector and
// can't be used with any other underlying container type.
container_type m_cont;
};
-#endif // wxUSE_STL/!wxUSE_STL
+#endif // wxUSE_STD_CONTAINERS/!wxUSE_STD_CONTAINERS
// Deprecated macro-based class for compatibility only, don't use any more.