Fixed compiler warnings for msvc x64

This commit is contained in:
Leonetienne
2021-12-06 13:22:48 +01:00
parent 96632f87ee
commit 1931602a38
4 changed files with 41 additions and 37 deletions

View File

@@ -1,9 +1,10 @@
#pragma once
#include <bitset>
#include <cstdint>
#include "Config.h"
namespace GhettoCipher
{
constexpr int HALFBLOCK_SIZE = (BLOCK_SIZE / 2);
constexpr std::size_t HALFBLOCK_SIZE = (BLOCK_SIZE / 2);
typedef std::bitset<HALFBLOCK_SIZE> Halfblock;
}