From c00e82262d2e34e66ed1956e4fa738ce23a77e3e Mon Sep 17 00:00:00 2001 From: Brendan Klare Date: Fri, 31 Jan 2014 13:15:45 -0500 Subject: [PATCH] linspace bug fix --- openbr/core/common.cpp | 1 + 1 file changed, 1 insertion(+), 0 deletions(-) diff --git a/openbr/core/common.cpp b/openbr/core/common.cpp index 46bb953..5f5043b 100644 --- a/openbr/core/common.cpp +++ b/openbr/core/common.cpp @@ -74,4 +74,5 @@ QList linspace(float start, float stop, int n) { spaced.append(curValue += delta); } spaced.append(stop); + return spaced; } -- libgit2 0.21.4