From d35d80427e7829a5a4efaa84b3aaa862c04996cb Mon Sep 17 00:00:00 2001 From: Arne Morten Kvarving Date: Tue, 3 Sep 2024 12:01:11 +0200 Subject: [PATCH] tasklets.hh: rename to tasklets.hpp --- CMakeLists_files.cmake | 2 +- opm/models/io/vtkmultiwriter.hh | 2 +- opm/models/parallel/{tasklets.hh => tasklets.hpp} | 7 ++++--- opm/simulators/flow/EclGenericWriter.hpp | 2 +- tests/models/test_tasklets.cpp | 2 +- tests/models/test_tasklets_failure.cpp | 2 +- 6 files changed, 9 insertions(+), 8 deletions(-) rename opm/models/parallel/{tasklets.hh => tasklets.hpp} (99%) diff --git a/CMakeLists_files.cmake b/CMakeLists_files.cmake index e0027a041..bf893d36c 100644 --- a/CMakeLists_files.cmake +++ b/CMakeLists_files.cmake @@ -671,7 +671,7 @@ list (APPEND PUBLIC_HEADER_FILES opm/models/parallel/gridcommhandles.hh opm/models/parallel/mpibuffer.hh opm/models/parallel/mpiutil.hpp - opm/models/parallel/tasklets.hh + opm/models/parallel/tasklets.hpp opm/models/parallel/threadedentityiterator.hh opm/models/parallel/threadmanager.hpp opm/models/ptflash/flashindices.hh diff --git a/opm/models/io/vtkmultiwriter.hh b/opm/models/io/vtkmultiwriter.hh index 1a1827a0f..edf79d1bd 100644 --- a/opm/models/io/vtkmultiwriter.hh +++ b/opm/models/io/vtkmultiwriter.hh @@ -33,7 +33,7 @@ #include "vtktensorfunction.hh" #include -#include +#include #include diff --git a/opm/models/parallel/tasklets.hh b/opm/models/parallel/tasklets.hpp similarity index 99% rename from opm/models/parallel/tasklets.hh rename to opm/models/parallel/tasklets.hpp index ad3508d3c..0e783c45b 100644 --- a/opm/models/parallel/tasklets.hh +++ b/opm/models/parallel/tasklets.hpp @@ -24,8 +24,8 @@ * \file * \brief Provides a mechanism to dispatch work to separate threads */ -#ifndef EWOMS_TASKLETS_HH -#define EWOMS_TASKLETS_HH +#ifndef OPM_TASKLETS_HPP +#define OPM_TASKLETS_HPP #include #include @@ -366,4 +366,5 @@ protected: }; } // end namespace Opm -#endif + +#endif // OPM_TASKLETS_HPP diff --git a/opm/simulators/flow/EclGenericWriter.hpp b/opm/simulators/flow/EclGenericWriter.hpp index c6b39f9a3..fee0f0c65 100644 --- a/opm/simulators/flow/EclGenericWriter.hpp +++ b/opm/simulators/flow/EclGenericWriter.hpp @@ -28,7 +28,7 @@ #ifndef OPM_ECL_GENERIC_WRITER_HPP #define OPM_ECL_GENERIC_WRITER_HPP -#include +#include #include #include diff --git a/tests/models/test_tasklets.cpp b/tests/models/test_tasklets.cpp index be54ffa8b..a95db6eba 100644 --- a/tests/models/test_tasklets.cpp +++ b/tests/models/test_tasklets.cpp @@ -28,7 +28,7 @@ */ #include "config.h" -#include +#include #include #include diff --git a/tests/models/test_tasklets_failure.cpp b/tests/models/test_tasklets_failure.cpp index c0eb6c7d0..f01793266 100644 --- a/tests/models/test_tasklets_failure.cpp +++ b/tests/models/test_tasklets_failure.cpp @@ -39,7 +39,7 @@ #include #include "config.h" -#include +#include std::mutex outputMutex;