summaryrefslogtreecommitdiff
path: root/src/ipa/libipa/algorithms
diff options
context:
space:
mode:
Diffstat (limited to 'src/ipa/libipa/algorithms')
-rw-r--r--src/ipa/libipa/algorithms/af_algorithm.h3
-rw-r--r--src/ipa/libipa/algorithms/af_hill_climbing.h3
2 files changed, 2 insertions, 4 deletions
diff --git a/src/ipa/libipa/algorithms/af_algorithm.h b/src/ipa/libipa/algorithms/af_algorithm.h
index 2862042b..53d4adbf 100644
--- a/src/ipa/libipa/algorithms/af_algorithm.h
+++ b/src/ipa/libipa/algorithms/af_algorithm.h
@@ -13,8 +13,7 @@
namespace libcamera::ipa::common::algorithms {
-template<typename Module>
-class AfAlgorithm : public Algorithm<Module>
+class AfAlgorithm
{
public:
AfAlgorithm() = default;
diff --git a/src/ipa/libipa/algorithms/af_hill_climbing.h b/src/ipa/libipa/algorithms/af_hill_climbing.h
index e251f3eb..33e2348c 100644
--- a/src/ipa/libipa/algorithms/af_hill_climbing.h
+++ b/src/ipa/libipa/algorithms/af_hill_climbing.h
@@ -19,8 +19,7 @@ LOG_DECLARE_CATEGORY(Af)
namespace ipa::common::algorithms {
-template<typename Module>
-class AfHillClimbing : public AfAlgorithm<Module>
+class AfHillClimbing : public AfAlgorithm
{
public:
AfHillClimbing()