In LogTrace In the function signature parsing, there is special handling of constructors, but the code rejects it before it gets there:
|
size_t ispace = sfunc.find(' ', i); |
|
if(ispace == string::npos) |
|
return; |
As there is not space in ctor signature, function ends here.