From 626dd7d807606bdd3a3ec80ddf9772dfc0e246b6 Mon Sep 17 00:00:00 2001 From: Josh Klontz Date: Tue, 9 Jun 2015 17:30:39 -0400 Subject: [PATCH] removed extra space --- openbr/plugins/core/pipe.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openbr/plugins/core/pipe.cpp b/openbr/plugins/core/pipe.cpp index 3dfa81e..a19c306 100644 --- a/openbr/plugins/core/pipe.cpp +++ b/openbr/plugins/core/pipe.cpp @@ -56,13 +56,13 @@ class PipeTransform : public CompositeTransform while (i < transforms.size()) { // Conditional statement covers likely case that first transform is untrainable if (transforms[i]->trainable) { - qDebug() << "Training " << transforms[i]->description() << "\n..."; + qDebug() << "Training" << transforms[i]->description() << "\n..."; transforms[i]->train(dataLines); } // if the transform is time varying, we can't project it in parallel if (transforms[i]->timeVarying()) { - qDebug() << "Projecting " << transforms[i]->description() << "\n..."; + qDebug() << "Projecting" << transforms[i]->description() << "\n..."; for (int j=0; j < dataLines.size();j++) { TemplateList junk; splitFTEs(dataLines[j], junk); -- libgit2 0.21.4