From 0a492dbe7a073bd3fa66a1783b8e3ac62d33a89b Mon Sep 17 00:00:00 2001 From: Robin Dunn <robin@alldunn.com> Date: Wed, 7 Apr 2010 22:23:45 +0000 Subject: [PATCH] #include <algorithm> to fix problem in PCH-less STL builds git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63909 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/vector.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/wx/vector.h b/include/wx/vector.h index c30f158e8b..3af683621f 100644 --- a/include/wx/vector.h +++ b/include/wx/vector.h @@ -17,6 +17,8 @@ #if wxUSE_STL #include <vector> +#include <algorithm> + #define wxVector std::vector template<typename T> inline void wxVectorSort(wxVector<T>& v) -- 2.47.2