diff options
author | Jack Lloyd <[email protected]> | 2017-09-20 02:53:08 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-09-20 02:53:08 -0400 |
commit | 8731d4920fa8b17374a442d62c2d8c1c6d34967a (patch) | |
tree | 0a0e98cf0c50e502397d920d8d4aa66f0036ce90 /src/lib/pubkey/dl_group | |
parent | f7927e4081f1029e0b9c735cfff12ab1fc5f05b8 (diff) |
Change header guard format to BOTAN_FOO_H_
ISO C++ reserves names with double underscores in them
Closes #512
Diffstat (limited to 'src/lib/pubkey/dl_group')
-rw-r--r-- | src/lib/pubkey/dl_group/dl_group.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/pubkey/dl_group/dl_group.h b/src/lib/pubkey/dl_group/dl_group.h index a5ec71fd7..5bd28bc27 100644 --- a/src/lib/pubkey/dl_group/dl_group.h +++ b/src/lib/pubkey/dl_group/dl_group.h @@ -5,8 +5,8 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#ifndef BOTAN_DL_PARAM_H__ -#define BOTAN_DL_PARAM_H__ +#ifndef BOTAN_DL_PARAM_H_ +#define BOTAN_DL_PARAM_H_ #include <botan/bigint.h> #include <botan/data_src.h> |