| author | |
| committer | |
| log | a86c7b13a399f1e296a202c414a26ac062cf8b8b |
| tree | d09b62bde3e5687bbddb501c6252ee71d75cde9d |
| parent | 7ccb94fac87ada47af32ae187e68f294873d2694 |
2 files changed, 10 insertions(+), 8 deletions(-)
doc/docgen.zig+5-4| ... | ... | @@ -858,10 +858,11 @@ fn termColor(allocator: Allocator, input: []const u8) ![]u8 { |
| 858 | 858 | } |
| 859 | 859 | |
| 860 | 860 | const builtin_types = [_][]const u8{ |
| 861 | "f16", "f32", "f64", "f128", "c_longdouble", "c_short", | |
| 862 | "c_ushort", "c_int", "c_uint", "c_long", "c_ulong", "c_longlong", | |
| 863 | "c_ulonglong", "c_char", "anyopaque", "void", "bool", "isize", | |
| 864 | "usize", "noreturn", "type", "anyerror", "comptime_int", "comptime_float", | |
| 861 | "f16", "f32", "f64", "f80", "f128", | |
| 862 | "c_longdouble", "c_short", "c_ushort", "c_int", "c_uint", | |
| 863 | "c_long", "c_ulong", "c_longlong", "c_ulonglong", "c_char", | |
| 864 | "anyopaque", "void", "bool", "isize", "usize", | |
| 865 | "noreturn", "type", "anyerror", "comptime_int", "comptime_float", | |
| 865 | 866 | }; |
| 866 | 867 | |
| 867 | 868 | fn isType(name: []const u8) bool { |
src/autodoc/render_source.zig+5-4| ... | ... | @@ -418,10 +418,11 @@ fn writeEscaped(out: anytype, input: []const u8) !void { |
| 418 | 418 | } |
| 419 | 419 | |
| 420 | 420 | const builtin_types = [_][]const u8{ |
| 421 | "f16", "f32", "f64", "f128", "c_longdouble", "c_short", | |
| 422 | "c_ushort", "c_int", "c_uint", "c_long", "c_ulong", "c_longlong", | |
| 423 | "c_ulonglong", "c_char", "anyopaque", "void", "bool", "isize", | |
| 424 | "usize", "noreturn", "type", "anyerror", "comptime_int", "comptime_float", | |
| 421 | "f16", "f32", "f64", "f80", "f128", | |
| 422 | "c_longdouble", "c_short", "c_ushort", "c_int", "c_uint", | |
| 423 | "c_long", "c_ulong", "c_longlong", "c_ulonglong", "c_char", | |
| 424 | "anyopaque", "void", "bool", "isize", "usize", | |
| 425 | "noreturn", "type", "anyerror", "comptime_int", "comptime_float", | |
| 425 | 426 | }; |
| 426 | 427 | |
| 427 | 428 | fn isType(name: []const u8) bool { |