Skip to content

Instantly share code, notes, and snippets.

@alex85k
Created November 23, 2014 18:09
Show Gist options
  • Save alex85k/38b84e12441aa39e818a to your computer and use it in GitHub Desktop.
Save alex85k/38b84e12441aa39e818a to your computer and use it in GitHub Desktop.
msvc-fix.patch
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