From 7c02da50d884a9171ef4c8de1b2663a9b970aaf7 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Mon, 3 Oct 2022 18:32:47 +0200 Subject: [PATCH] fix(example): clang-15 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 f878335b..a85ea33a 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 <= 14 +#if UNITS_COMP_CLANG <= 15 template estimation(state, U) -> estimation;