LeviLamina
Loading...
Searching...
No Matches
StorageProperty.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace absl::internal_any_invocable {
6
7enum class StorageProperty : uint64 {
8 // bitfield representation
9 KAlignment = 1ull << 3,
10 KStorageSize = 1ull << 4,
11};
12
13}