X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b1bf7dc722e2dba0632bd15bb407ae9d0a584ba5..166988aa358198f2cfaa506d8f653eb8006d0106:/include/wx/stack.h diff --git a/include/wx/stack.h b/include/wx/stack.h index 1ca3cd657a..b4e8ed2f8a 100644 --- a/include/wx/stack.h +++ b/include/wx/stack.h @@ -13,12 +13,12 @@ #include "wx/vector.h" -#if wxUSE_STL +#if wxUSE_STD_CONTAINERS #include #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. @@ -53,7 +53,7 @@ private: 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.