14 Apr 2026/ C++
C++20 Modules Don't Spark Joy
A real-world experience report on using C++20 modules in a 250-file game engine project. What works, what breaks across MSVC, Clang, and GCC, and patterns that help.
14 Apr 2026/ C++
A real-world experience report on using C++20 modules in a 250-file game engine project. What works, what breaks across MSVC, Clang, and GCC, and patterns that help.
12 Jan 2023/ GameDev
Adding structured logging to a C++ game engine using Boost.Log with sinks, formatters, and severity levels, wrapped in a clean C++20 module.
28 Mar 2022/ C++
Before C++23, operator[] couldn't take multiple parameters. This C++20 utility class enables multi-dimensional indexing like matrix[x][y] using templates.
03 Oct 2021/ C++
C++ enum classes don't support bitwise operators like |, & and ^ out of the box. Here's how to enable them using a constexpr-friendly EnumBitset wrapper.