Skip to content

Commit c545857

Browse files
committed
Indent fix
1 parent 4cd78bc commit c545857

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

modules/ml/src/data.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -638,9 +638,9 @@ class TrainDataImpl : public TrainData
638638

639639
//If there are responses in the csv file, save them. If not, responses matrix will contain just zeros
640640
if (noutputvars != 0){
641-
Mat(nsamples, noutputvars, CV_32F, &allresponses[0]).copyTo(tempResponses);
642-
setData(tempSamples, ROW_SAMPLE, tempResponses, noArray(), noArray(),
643-
noArray(), Mat(vtypes).clone(), tempMissing);
641+
Mat(nsamples, noutputvars, CV_32F, &allresponses[0]).copyTo(tempResponses);
642+
setData(tempSamples, ROW_SAMPLE, tempResponses, noArray(), noArray(),
643+
noArray(), Mat(vtypes).clone(), tempMissing);
644644
}
645645
else{
646646
Mat zero_mat(nsamples, 1, CV_32F, Scalar(0));

0 commit comments

Comments
 (0)