diff --git a/DataStructures/ExtractorStructs.h b/DataStructures/ExtractorStructs.h index fa8d5e8c9..740adc648 100644 --- a/DataStructures/ExtractorStructs.h +++ b/DataStructures/ExtractorStructs.h @@ -27,6 +27,11 @@ or see http://www.gnu.org/licenses/agpl.txt. #include "HashTable.h" #include "Util.h" +struct _PathData { + _PathData(NodeID n) : node(n) { } + NodeID node; +}; + /* Default Speed Profile: motorway 110 motorway_link 90 diff --git a/Plugins/BasicDescriptor.h b/Plugins/BasicDescriptor.h index 10ebc0adc..59b0c9a6b 100644 --- a/Plugins/BasicDescriptor.h +++ b/Plugins/BasicDescriptor.h @@ -29,11 +29,6 @@ or see http://www.gnu.org/licenses/agpl.txt. #ifndef BASICDESCRIPTOR_H_ #define BASICDESCRIPTOR_H_ -struct _PathData { - _PathData(NodeID n) : node(n) { } - NodeID node; -}; - class BasicDescriptor { public: template