Merge pull request #14515 from der-teufel-programming/autodoc-quickfixes

autodoc: Added `@qualCast` builtin function handling
This commit is contained in:
Loris Cro 2023-02-03 17:55:31 +01:00 committed by GitHub
commit e59ef95a40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View File

@ -1354,6 +1354,10 @@ const NAV_MODES = {
payloadHtml += "ptrCast";
break;
}
case "qual_cast": {
payloadHtml += "qualCast";
break;
}
case "truncate": {
payloadHtml += "truncate";
break;

View File

@ -1400,6 +1400,7 @@ fn walkInstruction(
.float_cast,
.int_cast,
.ptr_cast,
.qual_cast,
.truncate,
.align_cast,
.has_decl,