diff options
author | Danil Alexeev <danil@alexeev.xyz> | 2023-06-15 17:06:22 +0300 |
---|---|---|
committer | Danil Alexeev <danil@alexeev.xyz> | 2023-06-15 17:23:02 +0300 |
commit | eb391d3302167157b02b007777dd552d0b4bcd70 (patch) | |
tree | bd26bf6312ca95a67ea5e0128b2356fc13056f6f /core/os/time.cpp | |
parent | 824820d73a7a709f61950e74ff72392ab3f8be60 (diff) | |
download | redot-engine-eb391d3302167157b02b007777dd552d0b4bcd70.tar.gz |
Display `BitField[Enum]` in docs to distinguish from `Enum`
Diffstat (limited to 'core/os/time.cpp')
-rw-r--r-- | core/os/time.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/core/os/time.cpp b/core/os/time.cpp index 038e4adc03..bad5cc2e4f 100644 --- a/core/os/time.cpp +++ b/core/os/time.cpp @@ -52,9 +52,6 @@ static const uint8_t MONTH_DAYS_TABLE[2][12] = { { 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 } }; -VARIANT_ENUM_CAST(Month); -VARIANT_ENUM_CAST(Weekday); - #define UNIX_TIME_TO_HMS \ uint8_t hour, minute, second; \ { \ |