From 32d5d5628169560fdc328f99dfa9811454edd157 Mon Sep 17 00:00:00 2001 From: heck Date: Fri, 27 Sep 2024 14:54:20 +0200 Subject: [PATCH] Fix: Observer - the current values is of course per instance --- src/utils.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.hh b/src/utils.hh index aa7426c..5e68f9c 100644 --- a/src/utils.hh +++ b/src/utils.hh @@ -54,7 +54,7 @@ namespace Heck { } private: - static inline T val_current_{}; + T val_current_{}; }; } // namespace Heck #endif // HECK_DAISY_UTILS_HH \ No newline at end of file