From fddde2615707f099fc4cf6c213f2f98df800e00c Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Wed, 11 May 2022 20:20:55 +0200 Subject: [PATCH] fix(example): clang-14 compilation fixed --- 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 16a21375..a034d2db 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 <= 13 +#if UNITS_COMP_CLANG <= 14 template estimation(state, U) -> estimation;