8 lines
147 B
C++
8 lines
147 B
C++
#pragma once
|
|
#include <bitset>
|
|
#include "Config.h"
|
|
|
|
#define HALFBLOCK_SIZE (BLOCK_SIZE / 2)
|
|
|
|
typedef std::bitset<HALFBLOCK_SIZE> Halfblock;
|