diff options
| author | 2023-07-06 14:07:15 -0700 | |
|---|---|---|
| committer | 2023-07-07 21:48:40 +0200 | |
| commit | 808d3a01584e859d3dd37a9b980e40b42b851f06 (patch) | |
| tree | fdfb396819cdd2e90657d0c183a932f154de3299 | |
| parent | readField remove unreachable and support default value in string backed enums (diff) | |
| download | zig-sqlite-808d3a01584e859d3dd37a9b980e40b42b851f06.tar.gz zig-sqlite-808d3a01584e859d3dd37a9b980e40b42b851f06.tar.xz zig-sqlite-808d3a01584e859d3dd37a9b980e40b42b851f06.zip | |
test: add default value for TestUser.Color
| -rw-r--r-- | sqlite.zig | 1 |
1 files changed, 1 insertions, 0 deletions
| @@ -2233,6 +2233,7 @@ const TestUser = struct { | |||
| 2233 | // | 2233 | // |
| 2234 | 2234 | ||
| 2235 | pub const BaseType = []const u8; | 2235 | pub const BaseType = []const u8; |
| 2236 | pub const default = .red; | ||
| 2236 | }; | 2237 | }; |
| 2237 | }; | 2238 | }; |
| 2238 | 2239 | ||