From 1e094ae06256e37b598b86a2d1fed0fa59419d85 Mon Sep 17 00:00:00 2001 From: Owen Green Date: Mon, 4 Jan 2021 10:30:12 +0000 Subject: [PATCH] Fix FluidKDTree kr crash Don't persist in trying to read ID as srting --- include/wrapper/RealTimeBase.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wrapper/RealTimeBase.hpp b/include/wrapper/RealTimeBase.hpp index 607c5e7..ab2cca7 100644 --- a/include/wrapper/RealTimeBase.hpp +++ b/include/wrapper/RealTimeBase.hpp @@ -43,7 +43,7 @@ namespace impl{ if(c.remain()) { - index statedSize = static_cast(c.next()); + index statedSize = 1; if(c.remain() < statedSize) status = {Result::Status::kError,"Ran out of arguments at ", d.name};