From f21c7354d0b3da13c13720d0fa3198e185b3d27b Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Tue, 21 Mar 2023 23:17:15 +0100 Subject: [PATCH] fix: explicit deduction guilde for `estimation` is still needed for clang-16 --- example/kalman_filter/kalman.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/kalman_filter/kalman.h b/example/kalman_filter/kalman.h index 7a3fa1e4..3a04d8fd 100644 --- a/example/kalman_filter/kalman.h +++ b/example/kalman_filter/kalman.h @@ -84,7 +84,7 @@ public: uncertainty_type uncertainty; }; -#if UNITS_COMP_CLANG <= 15 +#if UNITS_COMP_CLANG <= 16 template estimation(state, U) -> estimation;