Created
November 23, 2014 18:09
-
-
Save alex85k/38b84e12441aa39e818a to your computer and use it in GitHub Desktop.
msvc-fix.patch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/Algorithms/schematized_subpath_embedding.cpp b/Algorithms/schematized_subpath_embedding.cpp | |
index 65090ed..bbfb93b 100644 | |
--- a/Algorithms/schematized_subpath_embedding.cpp | |
+++ b/Algorithms/schematized_subpath_embedding.cpp | |
@@ -1,9 +1,5 @@ | |
#include "schematized_subpath_embedding.hpp" | |
-#include "../DataStructures/SymbolicCoordinate.h" | |
-#include "../DataStructures/SchematizedPlane.h" | |
-#include "../DataStructures/SubPath.h" | |
- | |
#include <osrm/Coordinate.h> | |
#include <boost/assert.hpp> | |
diff --git a/Algorithms/schematized_subpath_embedding.hpp b/Algorithms/schematized_subpath_embedding.hpp | |
index f9cfdcd..fb82557 100644 | |
--- a/Algorithms/schematized_subpath_embedding.hpp | |
+++ b/Algorithms/schematized_subpath_embedding.hpp | |
@@ -3,9 +3,9 @@ | |
#include <vector> | |
-class SubPath; | |
-class SchematizedPlane; | |
-class SymbolicCoordinate; | |
+#include "../DataStructures/SymbolicCoordinate.h" | |
+#include "../DataStructures/SchematizedPlane.h" | |
+#include "../DataStructures/SubPath.h" | |
/** | |
* This class joins schematized subpaths to one big schematized path. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment