@JonB
I think it's some kind of hint for the reader to understand the source code better without browsing the whole class.
Like:
in some class.h where someFunction(int a, int b, float c) is declared
void someFunction(int a, int b, float c);
and (if I'm correct) everywhere the function is used, on every call, the code browser adds the names from the header, so you know right away what this
// some code
// ...
someFunction(42, 42, 13.37);
// ...
means.
With the hint it looks like:
( imagine meaningful names there :D )
someFunction( [ a ]: 42, [ b ]: 42, [ c ]: 13.37);
Therefore I don't think it's C++ :)
Btw: I also like woboq to check Qt source code :)