Skip to content

Commit

Permalink
error C2099: initializer is not a constant (#1208)
Browse files Browse the repository at this point in the history
  • Loading branch information
LqdBcnAtWork committed Jun 27, 2024
1 parent 74f7c4a commit 8b74050
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deps/sqlite3/sqlite3.c
Original file line number Diff line number Diff line change
Expand Up @@ -24887,8 +24887,8 @@ static const struct {
/* 1 */ { 6, "minute", 7.7379e+12, 60.0 },
/* 2 */ { 4, "hour", 1.2897e+11, 3600.0 },
/* 3 */ { 3, "day", 5373485.0, 86400.0 },
/* 4 */ { 5, "month", 176546.0, 30.0*86400.0 },
/* 5 */ { 4, "year", 14713.0, 365.0*86400.0 },
/* 4 */ { 5, "month", 176546.0, 2592000.0 },
/* 5 */ { 4, "year", 14713.0, 31536000.0 },
};

/*
Expand Down

0 comments on commit 8b74050

Please sign in to comment.