diff --git a/CMakeLists.txt b/CMakeLists.txt index 04f304b83..9f4e3f6dd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.10) # Set the build version -set(BUILD_VERSION 1.6.14) +set(BUILD_VERSION 1.6.15) # Set compatibility if(CMAKE_VERSION VERSION_GREATER "3.11.0") diff --git a/core/include/jiminy/core/Macros.h b/core/include/jiminy/core/Macros.h index 89060b5b2..1f28249e3 100644 --- a/core/include/jiminy/core/Macros.h +++ b/core/include/jiminy/core/Macros.h @@ -30,21 +30,8 @@ namespace jiminy { // **************** Generic template utilities ****************** - // https://stackoverflow.com/a/34672753/4820605 - template class base, typename derived> - struct is_base_of_template_impl - { - template - static constexpr std::true_type test(base const *); - static constexpr std::false_type test(...); - using type = decltype(test(std::declval())); - }; - - template