Fix header guard name.

This commit is contained in:
Ryan Curtin
2022-04-03 15:52:02 -04:00
parent 880c95bee5
commit 9c33d6b780
2 changed files with 4 additions and 4 deletions
@@ -10,8 +10,8 @@
* 3-clause BSD license along with mlpack. If not, see
* http://www.opensource.org/licenses/BSD-3-Clause for more information.
*/
#ifndef MLPACK_METHODS_ANN_LAYER_RBFType_HPP
#define MLPACK_METHODS_ANN_LAYER_RBFType_HPP
#ifndef MLPACK_METHODS_ANN_LAYER_RADIAL_BASIS_FUNCTION_HPP
#define MLPACK_METHODS_ANN_LAYER_RADIAL_BASIS_FUNCTION_HPP
#include <mlpack/prereqs.hpp>
#include <mlpack/methods/ann/activation_functions/gaussian_function.hpp>
@@ -7,8 +7,8 @@
* 3-clause BSD license along with mlpack. If not, see
* http://www.opensource.org/licenses/BSD-3-Clause for more information.
*/
#ifndef MLPACK_METHODS_ANN_LAYER_RBFType_IMPL_HPP
#define MLPACK_METHODS_ANN_LAYER_RBFType_IMPL_HPP
#ifndef MLPACK_METHODS_ANN_LAYER_RADIAL_BASIS_FUNCTION_IMPL_HPP
#define MLPACK_METHODS_ANN_LAYER_RADIAL_BASIS_FUNCTION_IMPL_HPP
// In case it hasn't yet been included.
#include "radial_basis_function.hpp"