From 1715b7ed089a8c3009ca39e0bd3081da217c61bc Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Thu, 28 Jul 2022 13:34:55 +0300 Subject: libcamera: Drop unnecessary typename keyword used with std::enable_if_t Usage of the std::enable_if_t type doesn't need to be prefixed by typename. Drop the unnecessary keyword. Reported-by: Jacopo Mondi Signed-off-by: Laurent Pinchart Reviewed-by: Umang Jain Reviewed-by: Jacopo Mondi --- include/libcamera/base/object.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/libcamera/base/object.h') diff --git a/include/libcamera/base/object.h b/include/libcamera/base/object.h index eef1a2c9..93333636 100644 --- a/include/libcamera/base/object.h +++ b/include/libcamera/base/object.h @@ -32,7 +32,7 @@ public: void postMessage(std::unique_ptr msg); template::value> * = nullptr> + std::enable_if_t::value> * = nullptr> R invokeMethod(R (T::*func)(FuncArgs...), ConnectionType type, Args&&... args) { -- cgit v1.2.1