aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorymherklotz <ymherklotz@gmail.com>2016-12-11 15:52:14 +0000
committerymherklotz <ymherklotz@gmail.com>2016-12-11 15:52:14 +0000
commitaa0bafd57f8be07a8214d592c1bbc10d8f5448a5 (patch)
treeea649aeb32d6da0768cd7f382a4b7bdcac74d496 /src
parent45912bc25564150c985de69c8c35c875b3141361 (diff)
downloadA-star-algorithm-aa0bafd57f8be07a8214d592c1bbc10d8f5448a5.tar.gz
A-star-algorithm-aa0bafd57f8be07a8214d592c1bbc10d8f5448a5.zip
fixed header files
Diffstat (limited to 'src')
-rw-r--r--src/astar.cpp1
-rw-r--r--src/main.cpp1
2 files changed, 0 insertions, 2 deletions
diff --git a/src/astar.cpp b/src/astar.cpp
index edbfaa9..be36ab8 100644
--- a/src/astar.cpp
+++ b/src/astar.cpp
@@ -1,7 +1,6 @@
#include "astar.hpp"
#include <cmath>
-#include <iostream>
AStar::AStar() : graph(NULL), graph_width(0), graph_height(0), path_length(10), count(0) {
}
diff --git a/src/main.cpp b/src/main.cpp
index 17fe9ad..4098b9a 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -13,7 +13,6 @@
#include <SFML/Graphics.hpp>
#include <iostream>
-#include <cstdlib>
using namespace std;