From 78fd3a2ba29136c5f60d88cc00fb2608aa94ced9 Mon Sep 17 00:00:00 2001 From: Ykkrosh Date: Sun, 24 Jul 2011 11:41:06 +0000 Subject: [PATCH] Fix compatibility with Boost 1.47 This was SVN commit r9905. --- source/maths/Noise.cpp | 2 +- source/scriptinterface/ScriptInterface.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/source/maths/Noise.cpp b/source/maths/Noise.cpp index d7cef05970..7a54723b0e 100644 --- a/source/maths/Noise.cpp +++ b/source/maths/Noise.cpp @@ -26,7 +26,7 @@ #include "precompiled.h" #include "Noise.h" #include -#include +#include namespace { diff --git a/source/scriptinterface/ScriptInterface.h b/source/scriptinterface/ScriptInterface.h index 69f7e9dba1..9abf813c82 100644 --- a/source/scriptinterface/ScriptInterface.h +++ b/source/scriptinterface/ScriptInterface.h @@ -31,9 +31,9 @@ #include "ps/Profile.h" #include "ps/utf16string.h" -class AutoGCRooter; +#include -namespace boost { class rand48; } +class AutoGCRooter; // Set the maximum number of function arguments that can be handled // (This should be as small as possible (for compiler efficiency),