libcamera: yaml_parser: Use std::is_same_v<>

As the YamlObject class is internal to libcamera, it can use the full
C++17 API. Replace std::is_same<>::value with std::is_same_v<>.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Reviewed-by: Han-Lin Chen <hanlinchen@chromium.org>
This commit is contained in:
Laurent Pinchart 2022-06-16 15:17:44 +03:00
parent 7f500a6c36
commit 40f8cbda60

View file

@ -44,12 +44,12 @@ public:
#ifndef __DOXYGEN__
template<typename T,
typename std::enable_if_t<
std::is_same<bool, T>::value ||
std::is_same<double, T>::value ||
std::is_same<int32_t, T>::value ||
std::is_same<uint32_t, T>::value ||
std::is_same<std::string, T>::value ||
std::is_same<Size, T>::value> * = nullptr>
std::is_same_v<bool, T> ||
std::is_same_v<double, T> ||
std::is_same_v<int32_t, T> ||
std::is_same_v<uint32_t, T> ||
std::is_same_v<std::string, T> ||
std::is_same_v<Size, T>> * = nullptr>
#else
template<typename T>
#endif