Skip to content

Instantly share code, notes, and snippets.

View Floweynt's full-sized avatar
🙃
Dying

Floweynt

🙃
Dying
  • x in R^3
View GitHub Profile
@Floweynt
Floweynt / ctcfg.h
Created July 6, 2022 02:11
C++ compile time config
#include <concepts>
#include <type_traits>
#include <algorithm>
#include <string_view>
namespace detail
{
template<typename T> constexpr bool always_false = false;
template<typename T>