Small bug: std::find not defined
Posted: Sun Oct 17, 2004 15:40
I don't know if this is a VC8 issue, or just an oversight that somehow got through, but tring to compile CEGUI on my system it threw back 4 errors, all releating to std::find not being defined.
The fix is simply to add the line
to the top of CEGUIWindow.h and CEGUIWindowFactoryManager.h.
This is on the CVS Head as of last night, so there's a small chance that it's already been fixed, but I couldn't find anything on here about it...
--
Graham
The fix is simply to add the line
Code: Select all
#include <algorithm>
to the top of CEGUIWindow.h and CEGUIWindowFactoryManager.h.
This is on the CVS Head as of last night, so there's a small chance that it's already been fixed, but I couldn't find anything on here about it...
--
Graham