summaryrefslogtreecommitdiff
path: root/include/libcamera/base/object.h
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2022-07-28 13:34:55 +0300
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2022-07-28 18:47:17 +0300
commit1715b7ed089a8c3009ca39e0bd3081da217c61bc (patch)
tree1fb53fbb8161966d4110d9e03939ea35c43c446e /include/libcamera/base/object.h
parentc19150ea94ac095de63fe878282caf3b23dd461f (diff)
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 <jacopo@jmondi.org> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Umang Jain <umang.jain@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Diffstat (limited to 'include/libcamera/base/object.h')
-rw-r--r--include/libcamera/base/object.h2
1 files changed, 1 insertions, 1 deletions
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<Message> msg);
template<typename T, typename R, typename... FuncArgs, typename... Args,
- typename std::enable_if_t<std::is_base_of<Object, T>::value> * = nullptr>
+ std::enable_if_t<std::is_base_of<Object, T>::value> * = nullptr>
R invokeMethod(R (T::*func)(FuncArgs...), ConnectionType type,
Args&&... args)
{