|
From: Tobias S. <t_s...@us...> - 2005-04-20 08:05:18
|
Update of /cvsroot/adobe-source/sandbox/adobe-source/adobe/test/visual/headers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24248/adobe-source/adobe/test/visual/headers Modified Files: ui_core.hpp Log Message: Fixes an error when building with GCC (MinGW or Cygwin) Index: ui_core.hpp =================================================================== RCS file: /cvsroot/adobe-source/sandbox/adobe-source/adobe/test/visual/headers/ui_core.hpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** ui_core.hpp 15 Apr 2005 22:28:00 -0000 1.8 --- ui_core.hpp 20 Apr 2005 08:05:09 -0000 1.9 *************** *** 12,20 **** /****************************************************************************************************/ - #if ADOBE_PLATFORM_WIN - # include <string> - # include <sstream> - #endif - #include <boost/function.hpp> #include <boost/operators.hpp> --- 12,15 ---- *************** *** 25,28 **** --- 20,31 ---- #include <adobe/rectangle.hpp> + /* + REVISIT (t_schwinger) : Actually this should be ADOBE_PLATFORM_WIN, but + reportedly MSVC doesn't like it. + */ + #ifdef __MINGW32__ + # include <sstream> + #endif + /****************************************************************************************************/ |