From c28c441e77ef4f14e98ce7b9b162b3649075f9b2 Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Thu, 27 Nov 2014 19:07:59 +0100 Subject: [PATCH] renamed: Contractor.h -> contractor.hpp --- Contractor/Prepare.cpp | 2 +- Contractor/{Contractor.h => contractor.hpp} | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) rename Contractor/{Contractor.h => contractor.hpp} (99%) diff --git a/Contractor/Prepare.cpp b/Contractor/Prepare.cpp index c356aac30..756031779 100644 --- a/Contractor/Prepare.cpp +++ b/Contractor/Prepare.cpp @@ -27,7 +27,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include "Prepare.h" -#include "Contractor.h" +#include "contractor.hpp" #include "../Algorithms/crc32_processor.hpp" #include "../DataStructures/DeallocatingVector.h" diff --git a/Contractor/Contractor.h b/Contractor/contractor.hpp similarity index 99% rename from Contractor/Contractor.h rename to Contractor/contractor.hpp index 06e2c1139..257dae656 100644 --- a/Contractor/Contractor.h +++ b/Contractor/contractor.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2013, Project OSRM, Dennis Luxen, others +Copyright (c) 2014, Project OSRM, Dennis Luxen, others All rights reserved. Redistribution and use in source and binary forms, with or without modification, @@ -25,8 +25,8 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef CONTRACTOR_H -#define CONTRACTOR_H +#ifndef CONTRACTOR_HPP +#define CONTRACTOR_HPP #include "../DataStructures/BinaryHeap.h" #include "../DataStructures/DeallocatingVector.h" @@ -970,4 +970,4 @@ class Contractor XORFastHash fast_hash; }; -#endif // CONTRACTOR_H +#endif // CONTRACTOR_HPP