Removed align.h macro

This commit is contained in:
BenDroid 2018-03-15 21:44:21 +01:00
parent 68a2397f57
commit 9433498a86
5 changed files with 4 additions and 41 deletions

View file

@ -31,7 +31,6 @@
#include <cstdint>
#include <bitset>
#include "align.h"
#include "Options.h"
struct cryptonight_ctx;
@ -69,7 +68,7 @@ private:
static int m_flags;
static ThreadBitSet m_multiHashThreadMask;
static size_t m_memorySize;
VAR_ALIGN(16, static uint8_t *m_memory);
alignas(16) static uint8_t *m_memory;
};