[mlpack-svn] r17253 - mlpack/trunk/src/mlpack/methods/neighbor_search

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Mon Oct 13 11:42:36 EDT 2014


Author: rcurtin
Date: Mon Oct 13 11:42:36 2014
New Revision: 17253

Log:
Now we have C++11, but there's no constructor copypasta problem anymore.


Modified:
   mlpack/trunk/src/mlpack/methods/neighbor_search/neighbor_search_impl.hpp

Modified: mlpack/trunk/src/mlpack/methods/neighbor_search/neighbor_search_impl.hpp
==============================================================================
--- mlpack/trunk/src/mlpack/methods/neighbor_search/neighbor_search_impl.hpp	(original)
+++ mlpack/trunk/src/mlpack/methods/neighbor_search/neighbor_search_impl.hpp	Mon Oct 13 11:42:36 2014
@@ -59,9 +59,6 @@
     singleMode(!naive && singleMode), // No single mode if naive.
     metric(metric)
 {
-  // C++11 will allow us to call out to other constructors so we can avoid this
-  // copy/paste problem.
-
   // We'll time tree building, but only if we are building trees.
   Timer::Start("tree_building");
 



More information about the mlpack-svn mailing list