From 3ba2ce7c09f874191b62c8cb8fd011fbb1cce47f Mon Sep 17 00:00:00 2001 From: Kirill Mishchenko Date: Sun, 25 Jun 2017 17:55:05 +0500 Subject: [PATCH] Add an empty line for separating blocks --- src/mlpack/methods/decision_tree/decision_tree_impl.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mlpack/methods/decision_tree/decision_tree_impl.hpp b/src/mlpack/methods/decision_tree/decision_tree_impl.hpp index 5aec7f470f..62e3c7bb23 100644 --- a/src/mlpack/methods/decision_tree/decision_tree_impl.hpp +++ b/src/mlpack/methods/decision_tree/decision_tree_impl.hpp @@ -72,6 +72,7 @@ DecisionTree::type>::type; using TrueLabelsType = typename std::remove_const< typename std::remove_reference::type>::type; + TrueMatType tmpData(std::forward(data)); TrueLabelsType tmpLabels(std::forward(labels));