Improve parent signature error

This commit is contained in:
kobewi
2022-12-01 01:46:01 +01:00
parent 0ff8742919
commit d1e4146462
6 changed files with 15 additions and 11 deletions
@@ -1,2 +1,2 @@
GDTEST_ANALYZER_ERROR
The function signature doesn't match the parent. Parent signature is "int my_function(int)".
The function signature doesn't match the parent. Parent signature is "my_function(int) -> int".
@@ -1,2 +1,2 @@
GDTEST_ANALYZER_ERROR
The function signature doesn't match the parent. Parent signature is "int my_function(int)".
The function signature doesn't match the parent. Parent signature is "my_function(int) -> int".
@@ -1,2 +1,2 @@
GDTEST_ANALYZER_ERROR
The function signature doesn't match the parent. Parent signature is "int my_function(int = default)".
The function signature doesn't match the parent. Parent signature is "my_function(int = default) -> int".
@@ -1,2 +1,2 @@
GDTEST_ANALYZER_ERROR
The function signature doesn't match the parent. Parent signature is "int my_function(int)".
The function signature doesn't match the parent. Parent signature is "my_function(int) -> int".
@@ -1,2 +1,2 @@
GDTEST_ANALYZER_ERROR
The function signature doesn't match the parent. Parent signature is "int my_function()".
The function signature doesn't match the parent. Parent signature is "my_function() -> int".