mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-09-28 16:29:34 +08:00
Bring back C++17 minimal requirement. (#475)
This commit is contained in:

committed by
ArthurSonzogni

parent
1d76a2321c
commit
c8ec151154
@@ -145,7 +145,7 @@ Color Color::RGB(uint8_t red, uint8_t green, uint8_t blue) {
|
||||
// static
|
||||
Color Color::HSV(uint8_t h, uint8_t s, uint8_t v) {
|
||||
if (s == 0) {
|
||||
return {0,0,0};
|
||||
return {0, 0, 0};
|
||||
}
|
||||
|
||||
uint8_t region = h / 43; // NOLINT
|
||||
|
Reference in New Issue
Block a user