comparison include/core/anime_season.h @ 413:192da585a0a8 default tip

*: fix formatting the clang-format file was broken andjust using LLVM defaults. now it's fixed and is more in line with what I actually prefer my code to look like -- esp. with regards to tabulators
author Paper <paper@tflc.us>
date Sat, 25 Jul 2026 14:54:32 -0400
parents 47c9f8502269
children
comparison
equal deleted inserted replaced
412:05aed03e0111 413:192da585a0a8
16 Summer, 16 Summer,
17 Autumn, 17 Autumn,
18 }; 18 };
19 19
20 static constexpr std::array<Name, 4> Names{ 20 static constexpr std::array<Name, 4> Names{
21 Name::Winter, 21 Name::Winter,
22 Name::Spring, 22 Name::Spring,
23 Name::Summer, 23 Name::Summer,
24 Name::Autumn, 24 Name::Autumn,
25 }; 25 };
26 26
27 Season() = default; 27 Season() = default;
28 Season(Name s, Date::Year y); 28 Season(Name s, Date::Year y);
29 explicit Season(const Date &date); 29 explicit Season(const Date &date);