From 88169e721476942be5af62da1819bc2d9628bbd6 Mon Sep 17 00:00:00 2001 From: michael Date: Sat, 19 Nov 2022 12:02:54 +0100 Subject: [PATCH] Change header names from .hh -> .hpp to be "GLOB"ed by CMakeLists.txt and appear in interface --- .../core/include/opencv2/core/detail/pointer-tuple-replacer.hpp | 2 +- modules/core/include/opencv2/core/detail/{util.hh => util.hpp} | 0 .../include/opencv2/core/detail/variadic-continuous-checker.hpp | 2 +- .../include/opencv2/core/stl/{algorithm.hh => algorithm.hpp} | 2 +- modules/core/test/test_stl_forward.cpp | 2 +- 5 files changed, 4 insertions(+), 4 deletions(-) rename modules/core/include/opencv2/core/detail/{util.hh => util.hpp} (100%) rename modules/core/include/opencv2/core/stl/{algorithm.hh => algorithm.hpp} (99%) diff --git a/modules/core/include/opencv2/core/detail/pointer-tuple-replacer.hpp b/modules/core/include/opencv2/core/detail/pointer-tuple-replacer.hpp index 3d87132c65..7e496cbdb6 100644 --- a/modules/core/include/opencv2/core/detail/pointer-tuple-replacer.hpp +++ b/modules/core/include/opencv2/core/detail/pointer-tuple-replacer.hpp @@ -8,7 +8,7 @@ #include #include #include -#include "opencv2/core/detail/util.hh" +#include "opencv2/core/detail/util.hpp" #include "opencv2/core/detail/cpp_features.hpp" //This opencv feature requires certain C++14 features diff --git a/modules/core/include/opencv2/core/detail/util.hh b/modules/core/include/opencv2/core/detail/util.hpp similarity index 100% rename from modules/core/include/opencv2/core/detail/util.hh rename to modules/core/include/opencv2/core/detail/util.hpp diff --git a/modules/core/include/opencv2/core/detail/variadic-continuous-checker.hpp b/modules/core/include/opencv2/core/detail/variadic-continuous-checker.hpp index 73d3361e6e..50c2e09032 100644 --- a/modules/core/include/opencv2/core/detail/variadic-continuous-checker.hpp +++ b/modules/core/include/opencv2/core/detail/variadic-continuous-checker.hpp @@ -9,7 +9,7 @@ #include "opencv2/core.hpp" #include #include -#include "opencv2/core/detail/util.hh" +#include "opencv2/core/detail/util.hpp" namespace cv { namespace detail { diff --git a/modules/core/include/opencv2/core/stl/algorithm.hh b/modules/core/include/opencv2/core/stl/algorithm.hpp similarity index 99% rename from modules/core/include/opencv2/core/stl/algorithm.hh rename to modules/core/include/opencv2/core/stl/algorithm.hpp index 5ba1785824..bd6113854c 100644 --- a/modules/core/include/opencv2/core/stl/algorithm.hh +++ b/modules/core/include/opencv2/core/stl/algorithm.hpp @@ -10,7 +10,7 @@ #include "opencv2/core/detail/pointer-tuple-replacer.hpp" #include "opencv2/core/detail/variadic-continuous-checker.hpp" #include "opencv2/core/detail/cpp_features.hpp" -#include "opencv2/core/detail/util.hh" +#include "opencv2/core/detail/util.hpp" #include //This opencv feature requires return type auto a C++14 feature diff --git a/modules/core/test/test_stl_forward.cpp b/modules/core/test/test_stl_forward.cpp index e7be4d2dd8..942445c9c7 100644 --- a/modules/core/test/test_stl_forward.cpp +++ b/modules/core/test/test_stl_forward.cpp @@ -2,7 +2,7 @@ // It is subject to the license terms in the LICENSE file found in the top-level directory // of this distribution and at http://opencv.org/license.html. #include "test_precomp.hpp" -#include "opencv2/core/stl/algorithm.hh" +#include "opencv2/core/stl/algorithm.hpp" #include "opencv2/core.hpp" #include "opencv2/core/detail/cpp_features.hpp" #include