[mlpack-svn] r16562 - mlpack/trunk/src/mlpack/core/util

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Mon May 26 23:40:35 EDT 2014


Author: rcurtin
Date: Mon May 26 23:40:35 2014
New Revision: 16562

Log:
Fix header guard names.  This is an incredibly pedantic fix.


Modified:
   mlpack/trunk/src/mlpack/core/util/log.hpp
   mlpack/trunk/src/mlpack/core/util/option.hpp
   mlpack/trunk/src/mlpack/core/util/option_impl.hpp
   mlpack/trunk/src/mlpack/core/util/prefixedoutstream.hpp
   mlpack/trunk/src/mlpack/core/util/prefixedoutstream_impl.hpp
   mlpack/trunk/src/mlpack/core/util/save_restore_utility.hpp

Modified: mlpack/trunk/src/mlpack/core/util/log.hpp
==============================================================================
--- mlpack/trunk/src/mlpack/core/util/log.hpp	(original)
+++ mlpack/trunk/src/mlpack/core/util/log.hpp	Mon May 26 23:40:35 2014
@@ -4,8 +4,8 @@
  *
  * Definition of the Log class.
  */
-#ifndef __MLPACK_CORE_IO_LOG_HPP
-#define __MLPACK_CORE_IO_LOG_HPP
+#ifndef __MLPACK_CORE_UTIL_LOG_HPP
+#define __MLPACK_CORE_UTIL_LOG_HPP
 
 #include <string>
 

Modified: mlpack/trunk/src/mlpack/core/util/option.hpp
==============================================================================
--- mlpack/trunk/src/mlpack/core/util/option.hpp	(original)
+++ mlpack/trunk/src/mlpack/core/util/option.hpp	Mon May 26 23:40:35 2014
@@ -5,8 +5,8 @@
  * Definition of the Option class, which is used to define parameters which are
  * used by CLI.  The ProgramDoc class also resides here.
  */
-#ifndef __MLPACK_CORE_IO_OPTION_HPP
-#define __MLPACK_CORE_IO_OPTION_HPP
+#ifndef __MLPACK_CORE_UTIL_OPTION_HPP
+#define __MLPACK_CORE_UTIL_OPTION_HPP
 
 #include <string>
 

Modified: mlpack/trunk/src/mlpack/core/util/option_impl.hpp
==============================================================================
--- mlpack/trunk/src/mlpack/core/util/option_impl.hpp	(original)
+++ mlpack/trunk/src/mlpack/core/util/option_impl.hpp	Mon May 26 23:40:35 2014
@@ -4,8 +4,8 @@
  *
  * Implementation of template functions for the Option class.
  */
-#ifndef __MLPACK_CORE_IO_OPTION_IMPL_HPP
-#define __MLPACK_CORE_IO_OPTION_IMPL_HPP
+#ifndef __MLPACK_CORE_UTIL_OPTION_IMPL_HPP
+#define __MLPACK_CORE_UTIL_OPTION_IMPL_HPP
 
 // Just in case it has not been included.
 #include "option.hpp"

Modified: mlpack/trunk/src/mlpack/core/util/prefixedoutstream.hpp
==============================================================================
--- mlpack/trunk/src/mlpack/core/util/prefixedoutstream.hpp	(original)
+++ mlpack/trunk/src/mlpack/core/util/prefixedoutstream.hpp	Mon May 26 23:40:35 2014
@@ -5,8 +5,8 @@
  *
  * Declaration of the PrefixedOutStream class.
  */
-#ifndef __MLPACK_CORE_IO_PREFIXEDOUTSTREAM_HPP
-#define __MLPACK_CORE_IO_PREFIXEDOUTSTREAM_HPP
+#ifndef __MLPACK_CORE_UTIL_PREFIXEDOUTSTREAM_HPP
+#define __MLPACK_CORE_UTIL_PREFIXEDOUTSTREAM_HPP
 
 #include <iostream>
 #include <iomanip>

Modified: mlpack/trunk/src/mlpack/core/util/prefixedoutstream_impl.hpp
==============================================================================
--- mlpack/trunk/src/mlpack/core/util/prefixedoutstream_impl.hpp	(original)
+++ mlpack/trunk/src/mlpack/core/util/prefixedoutstream_impl.hpp	Mon May 26 23:40:35 2014
@@ -5,8 +5,8 @@
  *
  * Implementation of templated PrefixedOutStream member functions.
  */
-#ifndef __MLPACK_CORE_IO_PREFIXEDOUTSTREAM_IMPL_HPP
-#define __MLPACK_CORE_IO_PREFIXEDOUTSTREAM_IMPL_HPP
+#ifndef __MLPACK_CORE_UTIL_PREFIXEDOUTSTREAM_IMPL_HPP
+#define __MLPACK_CORE_UTIL_PREFIXEDOUTSTREAM_IMPL_HPP
 
 // Just in case it hasn't been included.
 #include "prefixedoutstream.hpp"

Modified: mlpack/trunk/src/mlpack/core/util/save_restore_utility.hpp
==============================================================================
--- mlpack/trunk/src/mlpack/core/util/save_restore_utility.hpp	(original)
+++ mlpack/trunk/src/mlpack/core/util/save_restore_utility.hpp	Mon May 26 23:40:35 2014
@@ -7,8 +7,8 @@
  *
  * @experimental
  */
-#ifndef __MLPACK_CORE_UTIL_SAVE_RESTORE_MODEL_HPP
-#define __MLPACK_CORE_UTIL_SAVE_RESTORE_MODEL_HPP
+#ifndef __MLPACK_CORE_UTIL_SAVE_RESTORE_UTILITY_HPP
+#define __MLPACK_CORE_UTIL_SAVE_RESTORE_UTILITY_HPP
 
 #include <mlpack/prereqs.hpp>
 #include <list>



More information about the mlpack-svn mailing list