From 1e8355dadf5395fae55221f40ef1ef3dbad5a1f2 Mon Sep 17 00:00:00 2001 From: Leonetienne Date: Mon, 6 Dec 2021 12:47:15 +0100 Subject: [PATCH] Fixed bad include --- GhettoCrypt/Cipher.cpp | 3 ++- GhettoCrypt/Flexblock.h | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/GhettoCrypt/Cipher.cpp b/GhettoCrypt/Cipher.cpp index 93268c4..d9eb784 100644 --- a/GhettoCrypt/Cipher.cpp +++ b/GhettoCrypt/Cipher.cpp @@ -1,6 +1,7 @@ +#include +#include #include "Cipher.h" #include "Util.h" -#include GhettoCipher::Cipher::Cipher(const Block& key) : diff --git a/GhettoCrypt/Flexblock.h b/GhettoCrypt/Flexblock.h index c2b0280..bc1e415 100644 --- a/GhettoCrypt/Flexblock.h +++ b/GhettoCrypt/Flexblock.h @@ -1,5 +1,5 @@ #pragma once -#include +#include namespace GhettoCipher {