Skip to content
Snippets Groups Projects
Commit 93f09e67 authored by Theodoros Katzalis's avatar Theodoros Katzalis
Browse files

Fix a condition in an assertion

parent 44db1e42
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@ TimeAndDate::TimeAndDate(uint16_t year, uint8_t month, uint8_t day, uint8_t hour
// check if the parameters makes sense
assertI(2019 <= year, ErrorHandler::InternalErrorType::InvalidDate);
assertI(1 <= month && month <= 12, ErrorHandler::InternalErrorType::InvalidDate);
assertI(1 <= day && month <= 31, ErrorHandler::InternalErrorType::InvalidDate);
assertI(1 <= day && day <= 31, ErrorHandler::InternalErrorType::InvalidDate);
assertI(0 <= hour && hour <= 24, ErrorHandler::InternalErrorType::InvalidDate);
assertI(0 <= minute && minute <= 60, ErrorHandler::InternalErrorType::InvalidDate);
assertI(0 <= second && second <= 60, ErrorHandler::InternalErrorType::InvalidDate);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment