fix function ptr arg names

This commit is contained in:
Rune
2026-02-23 15:22:55 +01:00
parent 806f27381a
commit 3590478b20
2 changed files with 14 additions and 7 deletions

View File

@@ -793,7 +793,7 @@ abstract class Cpp2BeefGenerator
{
if (Clang.GetTokenKind(last) != .Identifier) break;
str.Append(' ');
str.Append(GetTokenSpelling!(last));
Compiler.Identifier.GetSourceName(GetTokenSpelling!(last), str);
break;
}
last = token;