Skip to content

Commit e59ef95

Browse files
authored
Merge pull request #14515 from der-teufel-programming/autodoc-quickfixes
autodoc: Added `@qualCast` builtin function handling
2 parents 93c56a7 + c3abb63 commit e59ef95

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

lib/docs/main.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1354,6 +1354,10 @@ const NAV_MODES = {
13541354
payloadHtml += "ptrCast";
13551355
break;
13561356
}
1357+
case "qual_cast": {
1358+
payloadHtml += "qualCast";
1359+
break;
1360+
}
13571361
case "truncate": {
13581362
payloadHtml += "truncate";
13591363
break;

src/Autodoc.zig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1400,6 +1400,7 @@ fn walkInstruction(
14001400
.float_cast,
14011401
.int_cast,
14021402
.ptr_cast,
1403+
.qual_cast,
14031404
.truncate,
14041405
.align_cast,
14051406
.has_decl,

0 commit comments

Comments
 (0)