renamed Util/StdHashExtensions.h -> Util/std_hash.hpp

This commit is contained in:
Dennis Luxen 2014-12-18 10:09:31 +01:00
parent 2ebe2faa74
commit 7e0b19c43d
3 changed files with 5 additions and 5 deletions

View File

@ -25,8 +25,8 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef STD_HASH_EXTENSIONS_H
#define STD_HASH_EXTENSIONS_H
#ifndef STD_HASH_HPP
#define STD_HASH_HPP
#include <functional>
@ -74,4 +74,4 @@ template <typename T1, typename T2> struct hash<std::pair<T1, T2>>
};
}
#endif // STD_HASH_EXTENSIONS_H
#endif // STD_HASH_HPP

View File

@ -40,7 +40,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "../Util/integer_range.hpp"
#include "../Util/OSRMException.h"
#include "../Util/simple_logger.hpp"
#include "../Util/StdHashExtensions.h"
#include "../Util/std_hash.hpp"
#include "../Util/timing_util.hpp"
#include <osrm/Coordinate.h>

View File

@ -32,7 +32,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "node_based_graph.hpp"
#include "restriction.hpp"
#include "../Util/StdHashExtensions.h"
#include "../Util/std_hash.hpp"
#include "../typedefs.h"
#include <unordered_map>