From 8731d4920fa8b17374a442d62c2d8c1c6d34967a Mon Sep 17 00:00:00 2001 From: Jack Lloyd Date: Wed, 20 Sep 2017 02:53:08 -0400 Subject: Change header guard format to BOTAN_FOO_H_ ISO C++ reserves names with double underscores in them Closes #512 --- src/lib/math/mp/mp_asmi.h | 4 ++-- src/lib/math/mp/mp_core.h | 4 ++-- src/lib/math/mp/mp_madd.h | 4 ++-- src/lib/math/mp/mp_types.h | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) (limited to 'src/lib/math/mp') diff --git a/src/lib/math/mp/mp_asmi.h b/src/lib/math/mp/mp_asmi.h index afb4d1407..4a0a2ec03 100644 --- a/src/lib/math/mp/mp_asmi.h +++ b/src/lib/math/mp/mp_asmi.h @@ -6,8 +6,8 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#ifndef BOTAN_MP_ASM_INTERNAL_H__ -#define BOTAN_MP_ASM_INTERNAL_H__ +#ifndef BOTAN_MP_ASM_INTERNAL_H_ +#define BOTAN_MP_ASM_INTERNAL_H_ #include diff --git a/src/lib/math/mp/mp_core.h b/src/lib/math/mp/mp_core.h index f76096d23..06b0c6f7f 100644 --- a/src/lib/math/mp/mp_core.h +++ b/src/lib/math/mp/mp_core.h @@ -7,8 +7,8 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#ifndef BOTAN_MP_CORE_OPS_H__ -#define BOTAN_MP_CORE_OPS_H__ +#ifndef BOTAN_MP_CORE_OPS_H_ +#define BOTAN_MP_CORE_OPS_H_ #include #include diff --git a/src/lib/math/mp/mp_madd.h b/src/lib/math/mp/mp_madd.h index e72c16ecb..68b9ed644 100644 --- a/src/lib/math/mp/mp_madd.h +++ b/src/lib/math/mp/mp_madd.h @@ -6,8 +6,8 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#ifndef BOTAN_MP_WORD_MULADD_H__ -#define BOTAN_MP_WORD_MULADD_H__ +#ifndef BOTAN_MP_WORD_MULADD_H_ +#define BOTAN_MP_WORD_MULADD_H_ #include #include diff --git a/src/lib/math/mp/mp_types.h b/src/lib/math/mp/mp_types.h index 0b5c5055e..fb52c2e9a 100644 --- a/src/lib/math/mp/mp_types.h +++ b/src/lib/math/mp/mp_types.h @@ -5,8 +5,8 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#ifndef BOTAN_MPI_TYPES_H__ -#define BOTAN_MPI_TYPES_H__ +#ifndef BOTAN_MPI_TYPES_H_ +#define BOTAN_MPI_TYPES_H_ #include -- cgit v1.2.3