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/rng/auto_rng/auto_rng.h | 4 ++-- src/lib/rng/chacha_rng/chacha_rng.h | 4 ++-- src/lib/rng/hmac_drbg/hmac_drbg.h | 4 ++-- src/lib/rng/rdrand_rng/rdrand_rng.h | 4 ++-- src/lib/rng/rng.h | 4 ++-- src/lib/rng/stateful_rng/stateful_rng.h | 4 ++-- src/lib/rng/system_rng/system_rng.h | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) (limited to 'src/lib/rng') diff --git a/src/lib/rng/auto_rng/auto_rng.h b/src/lib/rng/auto_rng/auto_rng.h index e458f23d9..866c56e12 100644 --- a/src/lib/rng/auto_rng/auto_rng.h +++ b/src/lib/rng/auto_rng/auto_rng.h @@ -5,8 +5,8 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#ifndef BOTAN_AUTO_SEEDING_RNG_H__ -#define BOTAN_AUTO_SEEDING_RNG_H__ +#ifndef BOTAN_AUTO_SEEDING_RNG_H_ +#define BOTAN_AUTO_SEEDING_RNG_H_ #include diff --git a/src/lib/rng/chacha_rng/chacha_rng.h b/src/lib/rng/chacha_rng/chacha_rng.h index f61be1e8b..a0d7d38f2 100644 --- a/src/lib/rng/chacha_rng/chacha_rng.h +++ b/src/lib/rng/chacha_rng/chacha_rng.h @@ -5,8 +5,8 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#ifndef BOTAN_CHACHA_RNG_H__ -#define BOTAN_CHACHA_RNG_H__ +#ifndef BOTAN_CHACHA_RNG_H_ +#define BOTAN_CHACHA_RNG_H_ #include #include diff --git a/src/lib/rng/hmac_drbg/hmac_drbg.h b/src/lib/rng/hmac_drbg/hmac_drbg.h index 8b6799fee..bcde0db13 100644 --- a/src/lib/rng/hmac_drbg/hmac_drbg.h +++ b/src/lib/rng/hmac_drbg/hmac_drbg.h @@ -5,8 +5,8 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#ifndef BOTAN_HMAC_DRBG_H__ -#define BOTAN_HMAC_DRBG_H__ +#ifndef BOTAN_HMAC_DRBG_H_ +#define BOTAN_HMAC_DRBG_H_ #include #include diff --git a/src/lib/rng/rdrand_rng/rdrand_rng.h b/src/lib/rng/rdrand_rng/rdrand_rng.h index 40331671d..de9798e70 100644 --- a/src/lib/rng/rdrand_rng/rdrand_rng.h +++ b/src/lib/rng/rdrand_rng/rdrand_rng.h @@ -5,8 +5,8 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#ifndef BOTAN_RNG_RDRAND_H__ -#define BOTAN_RNG_RDRAND_H__ +#ifndef BOTAN_RNG_RDRAND_H_ +#define BOTAN_RNG_RDRAND_H_ #include diff --git a/src/lib/rng/rng.h b/src/lib/rng/rng.h index 4a58992be..f86f80d61 100644 --- a/src/lib/rng/rng.h +++ b/src/lib/rng/rng.h @@ -5,8 +5,8 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#ifndef BOTAN_RANDOM_NUMBER_GENERATOR_H__ -#define BOTAN_RANDOM_NUMBER_GENERATOR_H__ +#ifndef BOTAN_RANDOM_NUMBER_GENERATOR_H_ +#define BOTAN_RANDOM_NUMBER_GENERATOR_H_ #include #include diff --git a/src/lib/rng/stateful_rng/stateful_rng.h b/src/lib/rng/stateful_rng/stateful_rng.h index 521ad082e..18697ae23 100644 --- a/src/lib/rng/stateful_rng/stateful_rng.h +++ b/src/lib/rng/stateful_rng/stateful_rng.h @@ -4,8 +4,8 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#ifndef BOTAN_STATEFUL_RNG_H__ -#define BOTAN_STATEFUL_RNG_H__ +#ifndef BOTAN_STATEFUL_RNG_H_ +#define BOTAN_STATEFUL_RNG_H_ #include diff --git a/src/lib/rng/system_rng/system_rng.h b/src/lib/rng/system_rng/system_rng.h index d3566c53e..491c4d1b3 100644 --- a/src/lib/rng/system_rng/system_rng.h +++ b/src/lib/rng/system_rng/system_rng.h @@ -5,8 +5,8 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#ifndef BOTAN_SYSTEM_RNG_H__ -#define BOTAN_SYSTEM_RNG_H__ +#ifndef BOTAN_SYSTEM_RNG_H_ +#define BOTAN_SYSTEM_RNG_H_ #include -- cgit v1.2.3