C++: add change note for calling conventions

This commit is contained in:
idrissrio
2025-03-31 11:58:45 +02:00
parent 9ec7f3c9a5
commit d61d9730c8

View File

@@ -0,0 +1,5 @@
---
category: feature
---
* Calling conventions explicitly specified on function declarations (`__cdecl`, `__stdcall`, `__fastcall`, etc.) are now represented as specifiers of those declarations.
* A new class `CallingConventionSpecifier` extending the `Specifier` class was introduced, which represents explicitly specified calling conventions.