Skip to content

Instantly share code, notes, and snippets.

View tan-wei's full-sized avatar
🤓
Want to learn more and more

Wei Tan tan-wei

🤓
Want to learn more and more
View GitHub Profile
@tan-wei
tan-wei / bitmasks.cpp
Created April 14, 2024 15:33 — forked from qrealka/bitmasks.cpp
c++ compile-time bitmasks
// https://stackoverflow.com/questions/54786278/how-do-i-write-a-maintainable-fast-compile-time-bit-mask-in-c
#include <bitset>
enum Flags { A = 1, B = 2, C = 3, D = 5,
E = 8, F = 13, G = 21, H,
I, J, K, L, M, N, O };
#define CPP_VERSION 14
#if CPP_VERSION==11