Hello!
I found that the code below returns different results in "2.32.1 WIP" and "2.33.0 WIP":
asIScriptFunction *scriptFunction = ...;
std::string declaration = scriptFunction->GetDeclaration(false);
The function is a class member, but I'm not asking for a class name.
In version "2.32.1 WIP" the resulting string is:
MyNamespace::MyReturnType@ functionName(int)
But in "2.33.0 WIP": I'm getting just:
MyReturnType@ functionName(int).
So the namespace name is not included into the return type name.
This breaks many of my existing code.
What is a reason of this change (maybe it's a bug)?
Thanks!