From bcabafbb92ae88f55b3c0dce13221e75f351aaab Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Wed, 19 Feb 2020 13:15:03 +0100 Subject: [PATCH] Fix header guards. --- src/core/dictionary.h | 6 +++--- src/core/string.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/core/dictionary.h b/src/core/dictionary.h index baa5f7a..463844d 100644 --- a/src/core/dictionary.h +++ b/src/core/dictionary.h @@ -21,8 +21,8 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ -#ifndef EOSIOKEYGEN_DICTIONARY_H -#define EOSIOKEYGEN_DICTIONARY_H +#ifndef EOSIOKEYGEN_CORE_DICTIONARY_H +#define EOSIOKEYGEN_CORE_DICTIONARY_H #include #include @@ -69,4 +69,4 @@ protected : } // namespace eoskeygen -#endif /* EOSIOKEYGEN_DICTIONARY_H */ +#endif /* EOSIOKEYGEN_CORE_DICTIONARY_H */ diff --git a/src/core/string.h b/src/core/string.h index 52313a0..2548625 100644 --- a/src/core/string.h +++ b/src/core/string.h @@ -21,8 +21,8 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ -#ifndef EOSIOKEYGEN_STRING_H -#define EOSIOKEYGEN_STRING_H +#ifndef EOSIOKEYGEN_CORE_STRING_H +#define EOSIOKEYGEN_CORE_STRING_H #include #include @@ -50,4 +50,4 @@ strlist_t l33twords(std::string str); } // namespace eoskeygen -#endif /* EOSIOKEYGEN_STRING_H */ +#endif /* EOSIOKEYGEN_CORE_STRING_H */