From eb920acc9ba4442f5c9ae0da1274f46e6a8d7883 Mon Sep 17 00:00:00 2001 From: Justin Carpentier <justin.carpentier@inria.fr> Date: Thu, 27 Feb 2020 11:02:47 +0100 Subject: [PATCH] core: rename file --- CMakeLists.txt | 2 +- include/eigenpy/details.hpp | 1 - include/eigenpy/eigen-allocator.hpp | 2 +- include/eigenpy/{map.hpp => numpy-map.hpp} | 6 +++--- 4 files changed, 5 insertions(+), 6 deletions(-) rename include/eigenpy/{map.hpp => numpy-map.hpp} (98%) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea73ef40..230fba31 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -110,7 +110,7 @@ SET(${PROJECT_NAME}_HEADERS include/eigenpy/eigen-allocator.hpp include/eigenpy/eigen-to-python.hpp include/eigenpy/eigen-from-python.hpp - include/eigenpy/map.hpp + include/eigenpy/numpy-map.hpp include/eigenpy/geometry.hpp include/eigenpy/geometry-conversion.hpp include/eigenpy/memory.hpp diff --git a/include/eigenpy/details.hpp b/include/eigenpy/details.hpp index 65d23619..58ed6ad0 100644 --- a/include/eigenpy/details.hpp +++ b/include/eigenpy/details.hpp @@ -17,7 +17,6 @@ #include "eigenpy/eigen-from-python.hpp" #include "eigenpy/registration.hpp" -#include "eigenpy/map.hpp" #include "eigenpy/exception.hpp" namespace boost { namespace python { namespace detail { diff --git a/include/eigenpy/eigen-allocator.hpp b/include/eigenpy/eigen-allocator.hpp index 1a104a62..4109293d 100644 --- a/include/eigenpy/eigen-allocator.hpp +++ b/include/eigenpy/eigen-allocator.hpp @@ -6,7 +6,7 @@ #define __eigenpy_eigen_allocator_hpp__ #include "eigenpy/fwd.hpp" -#include "eigenpy/map.hpp" +#include "eigenpy/numpy-map.hpp" #include "eigenpy/scalar-conversion.hpp" #include "eigenpy/utils/is-aligned.hpp" diff --git a/include/eigenpy/map.hpp b/include/eigenpy/numpy-map.hpp similarity index 98% rename from include/eigenpy/map.hpp rename to include/eigenpy/numpy-map.hpp index 33bc3231..0ea9a8c6 100644 --- a/include/eigenpy/map.hpp +++ b/include/eigenpy/numpy-map.hpp @@ -3,8 +3,8 @@ * Copyright 2018-2020, INRIA */ -#ifndef __eigenpy_map_hpp__ -#define __eigenpy_map_hpp__ +#ifndef __eigenpy_numpy_map_hpp__ +#define __eigenpy_numpy_map_hpp__ #include "eigenpy/fwd.hpp" #include "eigenpy/exception.hpp" @@ -148,4 +148,4 @@ namespace eigenpy } // namespace eigenpy -#endif // define __eigenpy_map_hpp__ +#endif // define __eigenpy_numpy_map_hpp__ -- GitLab