Fix non-PCH build by adding an explicit include.

This used to build so the include of CStr.h disappeared from the include
chain at some point. PCH builds kept working because this file is
included in precompiled.h for the engine project.

Differential Revision: https://code.wildfiregames.com/D1273
Reviewed By: Imarok
This was SVN commit r21075.
This commit is contained in:
Itms
2018-01-30 07:20:49 +00:00
parent 37d317e01a
commit 2bfb580415
+2 -1
View File
@@ -1,4 +1,4 @@
/* Copyright (C) 2017 Wildfire Games.
/* Copyright (C) 2018 Wildfire Games.
* This file is part of 0 A.D.
*
* 0 A.D. is free software: you can redistribute it and/or modify
@@ -18,6 +18,7 @@
#ifndef INCLUDED_JSI_MOD
#define INCLUDED_JSI_MOD
#include "ps/CStr.h"
#include "scriptinterface/ScriptInterface.h"
class ScriptInterface;