Now using actual include guards

This commit is contained in:
Leonetienne
2022-05-22 17:29:38 +02:00
parent 4d74153e92
commit e6567f3c8b
8 changed files with 45 additions and 8 deletions
+5 -1
View File
@@ -1,4 +1,6 @@
#pragma once
#ifndef GCRYPT_KEYSET_H
#define GCRYPT_KEYSET_H
#include <array>
#include "GCrypt/Key.h"
#include "GCrypt/Config.h"
@@ -7,3 +9,5 @@ namespace Leonetienne::GCrypt {
typedef std::array<Key, N_ROUNDS> Keyset;
}
#endif