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

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Thu Feb 27 20:48:04 EST 2014


Author: rcurtin
Date: Thu Feb 27 20:48:03 2014
New Revision: 16340

Log:
Remove using directive that has been there for six years.  Sigh...


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	Thu Feb 27 20:48:03 2014
@@ -12,7 +12,8 @@
 
 #include "neighbor_search_rules.hpp"
 
-using namespace mlpack::neighbor;
+namespace mlpack {
+namespace neighbor {
 
 // Construct the object.
 template<typename SortPolicy, typename MetricType, typename TreeType>
@@ -322,4 +323,7 @@
   return convert.str();
 }
 
+}; // namespace neighbor
+}; // namespace mlpack
+
 #endif



More information about the mlpack-svn mailing list