Skip to content

Commit

Permalink
Fix SQLite error C2099: initializer is not a constant
Browse files Browse the repository at this point in the history
Fix on upstream: https://www.sqlite.org/src/info/6c103aee6f146869

Co-authored-by: LqdBcnAtWork <[email protected]>
  • Loading branch information
m4heshd and LqdBcnAtWork committed Jun 28, 2024
1 parent c428999 commit 45dc507
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 @@ -25034,8 +25034,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 45dc507

Please sign in to comment.