From 9a4105838e9916b4de5b28b5208abe7ee7f3ac2e Mon Sep 17 00:00:00 2001 From: Sotiris Lamprinidis Date: Fri, 21 Nov 2025 11:05:13 +0100 Subject: [PATCH] Fix drange argument parsing --- RhizoVisionExplorer/rv.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/RhizoVisionExplorer/rv.cpp b/RhizoVisionExplorer/rv.cpp index b27e0e7..dc0fcca 100644 --- a/RhizoVisionExplorer/rv.cpp +++ b/RhizoVisionExplorer/rv.cpp @@ -127,6 +127,7 @@ static void append_checked_positive_ascending(double v, std::vector &out "Values for --dranges must be ascending. Got " + std::to_string(v) + " after " + std::to_string(out.back())); } + out.push_back(v); } // Returns true if token was a drange token (consumed); false means “not a drange token, stop.”