mirror of
https://github.com/barkeser2002/flower.git
synced 2026-09-25 19:36:20 +03:00
7 lines
166 B
C++
7 lines
166 B
C++
#pragma once
|
|
|
|
namespace engine
|
|
{
|
|
// CPU cache line size, set 64 bytes here.
|
|
constexpr size_t CPU_CACHELINE_SIZE = 64; // Maybe 32 bytes, 64 bytes, 128 bytes
|
|
} |