From fe6224380522385370c761a7f2257b388d43ed69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lorena=20Garc=C3=ADa?= Date: Tue, 4 Aug 2015 16:37:41 +0200 Subject: [PATCH] Whitespace error --- modules/ml/src/data.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/ml/src/data.cpp b/modules/ml/src/data.cpp index f224dbe642..b78b0d0551 100644 --- a/modules/ml/src/data.cpp +++ b/modules/ml/src/data.cpp @@ -638,9 +638,9 @@ public: //If there are responses in the csv file, save them. If not, responses matrix will contain just zeros if (noutputvars != 0){ - Mat(nsamples, noutputvars, CV_32F, &allresponses[0]).copyTo(tempResponses); - setData(tempSamples, ROW_SAMPLE, tempResponses, noArray(), noArray(), - noArray(), Mat(vtypes).clone(), tempMissing); + Mat(nsamples, noutputvars, CV_32F, &allresponses[0]).copyTo(tempResponses); + setData(tempSamples, ROW_SAMPLE, tempResponses, noArray(), noArray(), + noArray(), Mat(vtypes).clone(), tempMissing); } else{ Mat zero_mat(nsamples, 1, CV_32F, Scalar(0));