From 10672786a1183849627d3b07f5454001bb327455 Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Wed, 7 Jan 2015 12:28:26 +0100 Subject: [PATCH] fix copyright year and include guard --- data_structures/deallocating_vector.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/data_structures/deallocating_vector.hpp b/data_structures/deallocating_vector.hpp index facf56ec8..e2f82cfb0 100644 --- a/data_structures/deallocating_vector.hpp +++ b/data_structures/deallocating_vector.hpp @@ -1,6 +1,6 @@ /* -Copyright (c) 2013, Project OSRM, Dennis Luxen, others +Copyright (c) 2015, 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 DEALLOCATINGVECTOR_H_ -#define DEALLOCATINGVECTOR_H_ +#ifndef DEALLOCATING_VECTOR_HPP +#define DEALLOCATING_VECTOR_HPP #include "../Util/integer_range.hpp" @@ -303,4 +303,4 @@ class DeallocatingVector } }; -#endif /* DEALLOCATINGVECTOR_H_ */ +#endif /* DEALLOCATING_VECTOR_HPP */