summaryrefslogtreecommitdiff
path: root/src/ipa
diff options
context:
space:
mode:
Diffstat (limited to 'src/ipa')
-rw-r--r--src/ipa/ipa_vimc.cpp3
-rw-r--r--src/ipa/libipa/ipa_interface_wrapper.cpp2
-rw-r--r--src/ipa/rkisp1/rkisp1.cpp2
3 files changed, 3 insertions, 4 deletions
diff --git a/src/ipa/ipa_vimc.cpp b/src/ipa/ipa_vimc.cpp
index 8f03e811..4751ad91 100644
--- a/src/ipa/ipa_vimc.cpp
+++ b/src/ipa/ipa_vimc.cpp
@@ -20,7 +20,6 @@
#include "libipa/ipa_interface_wrapper.h"
#include "log.h"
-#include "utils.h"
namespace libcamera {
@@ -113,7 +112,7 @@ const struct IPAModuleInfo ipaModuleInfo = {
struct ipa_context *ipaCreate()
{
- return new IPAInterfaceWrapper(utils::make_unique<IPAVimc>());
+ return new IPAInterfaceWrapper(std::make_unique<IPAVimc>());
}
}
diff --git a/src/ipa/libipa/ipa_interface_wrapper.cpp b/src/ipa/libipa/ipa_interface_wrapper.cpp
index 3628a785..b93c1c1f 100644
--- a/src/ipa/libipa/ipa_interface_wrapper.cpp
+++ b/src/ipa/libipa/ipa_interface_wrapper.cpp
@@ -45,7 +45,7 @@ namespace libcamera {
*
* struct ipa_context *ipaCreate()
* {
- * return new IPAInterfaceWrapper(utils::make_unique<MyIPA>());
+ * return new IPAInterfaceWrapper(std::make_unique<MyIPA>());
* }
* \endcode
*
diff --git a/src/ipa/rkisp1/rkisp1.cpp b/src/ipa/rkisp1/rkisp1.cpp
index a8dd1645..438b3c66 100644
--- a/src/ipa/rkisp1/rkisp1.cpp
+++ b/src/ipa/rkisp1/rkisp1.cpp
@@ -278,7 +278,7 @@ const struct IPAModuleInfo ipaModuleInfo = {
struct ipa_context *ipaCreate()
{
- return new IPAInterfaceWrapper(utils::make_unique<IPARkISP1>());
+ return new IPAInterfaceWrapper(std::make_unique<IPARkISP1>());
}
}