mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-26 15:49:50 -06:00
wxWidgets3: update to svn r70933
This commit is contained in:
6
Externals/wxWidgets3/include/wx/stack.h
vendored
6
Externals/wxWidgets3/include/wx/stack.h
vendored
@ -13,12 +13,12 @@
|
||||
|
||||
#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.
|
||||
@ -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.
|
||||
|
Reference in New Issue
Block a user