From 0481d8272a4e526eb7b41258830e0b6c3638eac6 Mon Sep 17 00:00:00 2001 From: Aleksey Lobanov Date: Thu, 11 Jun 2015 22:23:04 +0300 Subject: [PATCH] Fixed lack of map header in crossgen.hpp --- CrossGen.workspace | 8 ++++---- Makefile | 8 ++++---- src/crossbasetypes.hpp | 1 + 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/CrossGen.workspace b/CrossGen.workspace index 8b225f3..18ecac8 100644 --- a/CrossGen.workspace +++ b/CrossGen.workspace @@ -1,13 +1,13 @@ - - + + - + - + diff --git a/Makefile b/Makefile index c1fa320..73e2032 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ .PHONY: clean All All: - @echo "----------Building project:[ wxCrossGen - Release ]----------" - @cd "wxCrossGen" && $(MAKE) -f "wxCrossGen.mk" + @echo "----------Building project:[ CrossBench - Debug ]----------" + @cd "CrossBench" && $(MAKE) -f "CrossBench.mk" clean: - @echo "----------Cleaning project:[ wxCrossGen - Release ]----------" - @cd "wxCrossGen" && $(MAKE) -f "wxCrossGen.mk" clean + @echo "----------Cleaning project:[ CrossBench - Debug ]----------" + @cd "CrossBench" && $(MAKE) -f "CrossBench.mk" clean diff --git a/src/crossbasetypes.hpp b/src/crossbasetypes.hpp index 1ec31cb..528f041 100644 --- a/src/crossbasetypes.hpp +++ b/src/crossbasetypes.hpp @@ -4,6 +4,7 @@ #include #include #include +#include typedef std::map DictType; typedef std::vector< std::vector > GridType;