You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I got this error when calling removeEntries on NameManager:
dart/common/detail/NameManager.h:203:21: error: too many arguments to function
call, expected single argument '_name', have 2 arguments
removeName(_name, false);
~~~~~~~~~~ ^~~~~
I checked the source code and found that removeName does indeed have the function signature:
I got this error when calling
removeEntries
onNameManager
:I checked the source code and found that
removeName
does indeed have the function signature:I suspect that we never saw this before because
NameManager
is a template class andremoveEntries
is only instantiated when first referenced.The text was updated successfully, but these errors were encountered: