VC2005 build fix

This was SVN commit r7572.
This commit is contained in:
Ykkrosh 2010-05-22 23:12:12 +00:00
parent 5c3a59234c
commit be4e355ef3

View File

@ -17,6 +17,13 @@
#include "precompiled.h"
// Ugly hack: Boost disables rand48's operator<< in VC2005 and older, but we'd quite
// like to use it, so remove the macro that disables it (before we include
// linear_congruential.hpp)
#if MSC_VERSION && MSC_VERSION <= 1400
#undef BOOST_NO_MEMBER_TEMPLATE_FRIENDS
#endif
#include "ComponentManager.h"
#include "IComponent.h"
#include "ParamNode.h"