Navigation Menu

Skip to content

Commit

Permalink
Add missing field initializers.
Browse files Browse the repository at this point in the history
  • Loading branch information
s-yata committed Jun 5, 2013
1 parent 51ebf86 commit d6f12bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/grnxx/broken_down_time.hpp
Expand Up @@ -37,7 +37,7 @@ struct BrokenDownTime {
int isdst; // Daylight saving time.

static constexpr BrokenDownTime invalid_value() {
return BrokenDownTime{};
return BrokenDownTime{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
}
};

Expand Down

0 comments on commit d6f12bb

Please sign in to comment.