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/cli/cli.h | 4 ++-- src/cli/credentials.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/cli') diff --git a/src/cli/cli.h b/src/cli/cli.h index 249c87722..37985339e 100644 --- a/src/cli/cli.h +++ b/src/cli/cli.h @@ -4,8 +4,8 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#ifndef BOTAN_CLI_H__ -#define BOTAN_CLI_H__ +#ifndef BOTAN_CLI_H_ +#define BOTAN_CLI_H_ #include #include diff --git a/src/cli/credentials.h b/src/cli/credentials.h index da83e73e9..23d651240 100644 --- a/src/cli/credentials.h +++ b/src/cli/credentials.h @@ -4,8 +4,8 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#ifndef EXAMPLE_CREDENTIALS_MANAGER_H__ -#define EXAMPLE_CREDENTIALS_MANAGER_H__ +#ifndef EXAMPLE_CREDENTIALS_MANAGER_H_ +#define EXAMPLE_CREDENTIALS_MANAGER_H_ #include #include -- cgit v1.2.3