| 744 | } |
| 745 | |
| 746 | DateValue::DateValue() : Value(date) { |
| 747 | date_ = {}; |
| 748 | } |
| 749 | |
| 750 | DateValue::DateValue(int32_t year, int32_t month, int32_t day) : Value(date) { |
| 751 | date_ = {year, month, day}; |
nothing calls this directly
no outgoing calls
no test coverage detected