mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 07:32:44 +00:00
docgen: add f80 to builtin types
This commit is contained in:
parent
7ccb94fac8
commit
a86c7b13a3
@ -858,10 +858,11 @@ fn termColor(allocator: Allocator, input: []const u8) ![]u8 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const builtin_types = [_][]const u8{
|
const builtin_types = [_][]const u8{
|
||||||
"f16", "f32", "f64", "f128", "c_longdouble", "c_short",
|
"f16", "f32", "f64", "f80", "f128",
|
||||||
"c_ushort", "c_int", "c_uint", "c_long", "c_ulong", "c_longlong",
|
"c_longdouble", "c_short", "c_ushort", "c_int", "c_uint",
|
||||||
"c_ulonglong", "c_char", "anyopaque", "void", "bool", "isize",
|
"c_long", "c_ulong", "c_longlong", "c_ulonglong", "c_char",
|
||||||
"usize", "noreturn", "type", "anyerror", "comptime_int", "comptime_float",
|
"anyopaque", "void", "bool", "isize", "usize",
|
||||||
|
"noreturn", "type", "anyerror", "comptime_int", "comptime_float",
|
||||||
};
|
};
|
||||||
|
|
||||||
fn isType(name: []const u8) bool {
|
fn isType(name: []const u8) bool {
|
||||||
|
@ -418,10 +418,11 @@ fn writeEscaped(out: anytype, input: []const u8) !void {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const builtin_types = [_][]const u8{
|
const builtin_types = [_][]const u8{
|
||||||
"f16", "f32", "f64", "f128", "c_longdouble", "c_short",
|
"f16", "f32", "f64", "f80", "f128",
|
||||||
"c_ushort", "c_int", "c_uint", "c_long", "c_ulong", "c_longlong",
|
"c_longdouble", "c_short", "c_ushort", "c_int", "c_uint",
|
||||||
"c_ulonglong", "c_char", "anyopaque", "void", "bool", "isize",
|
"c_long", "c_ulong", "c_longlong", "c_ulonglong", "c_char",
|
||||||
"usize", "noreturn", "type", "anyerror", "comptime_int", "comptime_float",
|
"anyopaque", "void", "bool", "isize", "usize",
|
||||||
|
"noreturn", "type", "anyerror", "comptime_int", "comptime_float",
|
||||||
};
|
};
|
||||||
|
|
||||||
fn isType(name: []const u8) bool {
|
fn isType(name: []const u8) bool {
|
||||||
|
Loading…
Reference in New Issue
Block a user