Fixed bad include

This commit is contained in:
Leonetienne 2021-12-06 12:47:15 +01:00
parent c928550b10
commit 1e8355dadf
2 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,7 @@
#include <iostream>
#include <vector>
#include "Cipher.h"
#include "Util.h"
#include <iostream>
GhettoCipher::Cipher::Cipher(const Block& key)
:

View File

@ -1,5 +1,5 @@
#pragma once
#include <vector>
#include <string>
namespace GhettoCipher
{