Mercurial > hg > kwantix
changeset 12:6e06eb6ec448
Trivial change in include guards.
author | Jordi Gutiérrez Hermoso <jordigh@gmail.com> |
---|---|
date | Mon, 07 Jul 2008 13:07:11 -0500 |
parents | d0076d9b2ef1 |
children | 0531194a431d |
files | include/bvp.hpp include/ddm.hpp include/diff_op.hpp include/error.hpp include/func.hpp include/interpolator.hpp include/linalg.hpp include/rbf.hpp include/utils.hpp |
diffstat | 9 files changed, 25 insertions(+), 25 deletions(-) [+] |
line wrap: on
line diff
--- a/include/bvp.hpp +++ b/include/bvp.hpp @@ -2,8 +2,8 @@ * \brief Classes domain, BVP, and linear_BVP2 are declared here. */ -#ifndef __BVP_H__ -#define __BVP_H__ +#ifndef __BVP_HPP__ +#define __BVP_HPP__ #include <map> #include <set> @@ -236,4 +236,4 @@ }; } -#endif //__BVP_H__ +#endif //__BVP_HPP__
--- a/include/ddm.hpp +++ b/include/ddm.hpp @@ -1,5 +1,5 @@ -#ifndef __DDM_H__ -#define __DDM_H__ +#ifndef __DDM_HPP__ +#define __DDM_HPP__ #include <vector> #include <map> @@ -140,5 +140,5 @@ }; } -#endif // __DDM_H__ +#endif // __DDM_HPP__
--- a/include/diff_op.hpp +++ b/include/diff_op.hpp @@ -1,5 +1,5 @@ -#ifndef __DIFF_OP_H__ -#define __DIFF_OP_H__ +#ifndef __DIFF_OP_HPP__ +#define __DIFF_OP_HPP__ #include "linalg.hpp" #include "func.hpp" @@ -119,4 +119,4 @@ } -#endif //__DIFF_OP_H__ +#endif //__DIFF_OP_HPP__
--- a/include/error.hpp +++ b/include/error.hpp @@ -8,8 +8,8 @@ * useless! */ -#ifndef __ERROR_H__ -#define __ERROR_H__ +#ifndef __ERROR_HPP__ +#define __ERROR_HPP__ #include <gsl/gsl_errno.h> #include <string> @@ -323,4 +323,4 @@ }; } -#endif //__ERROR_H__ +#endif //__ERROR_HPP__
--- a/include/func.hpp +++ b/include/func.hpp @@ -1,5 +1,5 @@ -#ifndef __FUNC_H__ -#define __FUNC_H__ +#ifndef __FUNC_HPP__ +#define __FUNC_HPP__ #include "linalg.hpp" #include <gsl/gsl_deriv.h> @@ -52,4 +52,4 @@ }; } -#endif //__FUNC_H__ +#endif //__FUNC_HPP__
--- a/include/interpolator.hpp +++ b/include/interpolator.hpp @@ -1,5 +1,5 @@ -#ifndef __INTERPOLATOR_H__ -#define __INTERPOLATOR_H__ +#ifndef __INTERPOLATOR_HPP__ +#define __INTERPOLATOR_HPP__ #include <vector> #include <map>
--- a/include/linalg.hpp +++ b/include/linalg.hpp @@ -6,8 +6,8 @@ * BLAS and general linear algebra routines. */ -#ifndef __LINALG_H__ -#define __LINALG_H__ +#ifndef __LINALG_HPP__ +#define __LINALG_HPP__ #include <gsl/gsl_matrix.h> #include <gsl/gsl_vector.h> @@ -466,4 +466,4 @@ } } } -#endif //__LINALG_H__ +#endif //__LINALG_HPP__
--- a/include/rbf.hpp +++ b/include/rbf.hpp @@ -1,8 +1,8 @@ /*! \file rbf.hpp * \brief Radial basis functions declared here. */ -#ifndef __RBF_H__ -#define __RBF_H__ +#ifndef __RBF_HPP__ +#define __RBF_HPP__ #include "linalg.hpp" #include "error.hpp" @@ -232,4 +232,4 @@ } -#endif // __RBF_H__ +#endif // __RBF_HPP__