summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2022-10-09 07:34:09 +0300
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2022-10-10 17:04:29 +0300
commite0e54965df015b954d75ebe945221372f2dffb80 (patch)
treeb5849d8a9a7116a2461c3641fedfe7cfbcf0f8da /include
parent603a4d60f6ac4dbc2474700943dd1a0066ee1f23 (diff)
libcamera: base: utils: Drop defopt
utils::defopt causes compilation issues on gcc 8.0.0 to gcc 8.3.0, likely due to bug https://gcc.gnu.org/bugzilla/show_bug.cgi?id=86521 that was fixed in gcc 8.4.0. gcc 8.3.0 may be considered old (libcamera requires gcc-8 or newer), but it is shipped by Debian 10 that has LTS support until mid-2024. As no workaround has been found to fix compilation on gcc 8.3.0 while still retaining the functionality of utils::defopt, remove it from the libcamera base library. This change could be reverted once support for gcc-8 will be dropped. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'include')
-rw-r--r--include/libcamera/base/utils.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/include/libcamera/base/utils.h b/include/libcamera/base/utils.h
index ed88b716..eb7bcdf4 100644
--- a/include/libcamera/base/utils.h
+++ b/include/libcamera/base/utils.h
@@ -367,20 +367,6 @@ decltype(auto) abs_diff(const T &a, const T &b)
return a - b;
}
-namespace details {
-
-struct defopt_t {
- template<typename T>
- operator T() const
- {
- return T{};
- }
-};
-
-} /* namespace details */
-
-constexpr details::defopt_t defopt;
-
} /* namespace utils */
#ifndef __DOXYGEN__