Skip to content

Commit

Permalink
Missing includes
Browse files Browse the repository at this point in the history
  • Loading branch information
JDarthenay committed Apr 27, 2016
1 parent 3d02e88 commit e1e85aa
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -95,3 +95,4 @@ Dependencies/
#Ignore NetBeans project directory
nbproject/
.tx/
/makefile
1 change: 1 addition & 0 deletions src/Battlescape/Pathfinding.cpp
Expand Up @@ -17,6 +17,7 @@
* along with OpenXcom. If not, see <http://www.gnu.org/licenses/>.
*/
#include <list>
#include <algorithm>
#include "Pathfinding.h"
#include "PathfindingOpenSet.h"
#include "../Savegame/SavedBattleGame.h"
Expand Down
1 change: 1 addition & 0 deletions src/Battlescape/UnitFallBState.cpp
Expand Up @@ -18,6 +18,7 @@
*/

#include "UnitFallBState.h"
#include <algorithm>
#include "TileEngine.h"
#include "Pathfinding.h"
#include "Map.h"
Expand Down
1 change: 1 addition & 0 deletions src/Engine/Language.cpp
Expand Up @@ -21,6 +21,7 @@
#include <cassert>
#include <set>
#include <climits>
#include <algorithm>
#include "CrossPlatform.h"
#include "Logger.h"
#include "Options.h"
Expand Down
1 change: 1 addition & 0 deletions src/Menu/ListLoadState.cpp
Expand Up @@ -17,6 +17,7 @@
* along with OpenXcom. If not, see <http://www.gnu.org/licenses/>.
*/
#include "ListLoadState.h"
#include <algorithm>
#include "../Engine/Game.h"
#include "../Engine/LocalizedText.h"
#include "../Engine/Action.h"
Expand Down
3 changes: 2 additions & 1 deletion src/Mod/MapBlock.cpp
Expand Up @@ -17,8 +17,9 @@
* along with OpenXcom. If not, see <http://www.gnu.org/licenses/>.
*/
#include "MapBlock.h"
#include "../Battlescape/Position.h"
#include <sstream>
#include <algorithm>
#include "../Battlescape/Position.h"
#include "../Engine/Exception.h"

namespace OpenXcom
Expand Down

0 comments on commit e1e85aa

Please sign in to comment.