// foo.h
static inline bool use_foo = true;static: Limits the variable's linkage to the current translation unit. Each translation unit (source file including this header) will have its own separate instance ofuse_foo.
| git log --date=local --format="%cD" --stat --no-merges |
| // An Arbitrary instance generator for std::variant, for | |
| // Rapidcheck: https://github.com/emil-e/rapidcheck | |
| #include <variant> | |
| namespace rc { | |
| template<> | |
| struct Arbitrary<std::monostate> { | |
| static Gen<std::monostate> arbitrary() { |