1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-18 13:12:50 +00:00

compile fixes

This commit is contained in:
gus 2014-07-22 11:49:45 +02:00
parent 875daed4ec
commit 2092e5fe22
12 changed files with 17 additions and 1 deletions

View File

@ -1,6 +1,7 @@
#include "document.hpp"
#include <cassert>
#include <iostream>
#include <boost/filesystem.hpp>

View File

@ -8,6 +8,8 @@
#include "../mwbase/environment.hpp"
#include "../mwmechanics/creaturestats.hpp"
#include <iostream>
namespace MWMechanics
{

View File

@ -1,5 +1,7 @@
#include "animation.hpp"
#include <iostream>
#include <OgreSkeletonManager.h>
#include <OgreSkeletonInstance.h>
#include <OgreEntity.h>

View File

@ -1,5 +1,7 @@
#include "occlusionquery.hpp"
#include <iostream>
#include <OgreRenderSystem.h>
#include <OgreRoot.h>
#include <OgreBillboardSet.h>

View File

@ -1,6 +1,7 @@
#include "renderingmanager.hpp"
#include <cassert>
#include <iostream>
#include <OgreRoot.h>
#include <OgreRenderWindow.h>

View File

@ -1,6 +1,8 @@
#include "statemanagerimp.hpp"
#include <iostream>
#include <components/esm/esmwriter.hpp>
#include <components/esm/esmreader.hpp>
#include <components/esm/cellid.hpp>

View File

@ -1,6 +1,7 @@
#include "containerstore.hpp"
#include <iostream>
#include <cassert>
#include <typeinfo>
#include <stdexcept>

View File

@ -45,7 +45,7 @@ static char strict_normalize_char(char ch)
static char nonstrict_normalize_char(char ch)
{
return ch == '\\' ? '/' : std::tolower(ch);
return ch == '\\' ? '/' : std::tolower(ch,std::locale());
}
template<typename T1, typename T2>

View File

@ -37,6 +37,7 @@
#include <vector>
#include <cassert>
#include <typeinfo>
#include <iostream>
#include <boost/weak_ptr.hpp>
#include <boost/shared_ptr.hpp>

View File

@ -4,6 +4,7 @@
#include <OgrePlatform.h>
#include <OgreRoot.h>
#include <iostream>
namespace SFO
{

View File

@ -8,6 +8,8 @@
#include <OgreGpuProgramManager.h>
#include <OgreVector4.h>
#include <iostream>
namespace sh
{
OgreGpuProgram::OgreGpuProgram(

View File

@ -8,6 +8,7 @@
#include <map>
#include "BulletShapeLoader.h"
#include "BulletCollision/CollisionShapes/btScaledBvhTriangleMeshShape.h"
#include <boost/shared_ptr.hpp>