cdecl-11.6
·
4261 commits
to master
since this release
C++23 integer literal suffixes
The case-insensitive integer literal suffixes of uz
and zu
for size_t
and z
for ssize_t
are now supported.
C++23 operator[]
Now allowing operator[]
to have zero or more arguments starting in C++23.
Fixed bug with array of function
Given:
cdecl> explain int f[5](double)
declare f as function (double) returning int
cdecl (1) incorrectly elided the array and therefore (2) didn't report the array of function as an error.
typedef
of function
typedef
s of function are now correctly allowed:
typedef int F(void)