1
1
forked from 0ad/0ad

Fix warning

This was SVN commit r7669.
This commit is contained in:
Ykkrosh 2010-07-03 10:48:44 +00:00
parent 272c2865b0
commit 0560e1c970

View File

@ -25,8 +25,14 @@
#include "js/jsapi.h"
#include <sstream>
// Disable "'boost::algorithm::detail::is_classifiedF' : assignment operator could not be generated"
#if MSC_VERSION
#pragma warning(disable:4512)
#endif
#include <boost/algorithm/string.hpp>
#include <boost/algorithm/string/join.hpp> // this isn't in string.hpp
#include <boost/algorithm/string/join.hpp> // this isn't in string.hpp in old Boosts
static CParamNode g_NullNode(false);