genbindings: fix NotAssign overload functions

This commit is contained in:
mappu 2024-08-14 18:26:51 +12:00
parent d7a7ae9bcf
commit aaa1d1274b

View File

@ -44,6 +44,7 @@ func (nm CppMethod) SafeMethodName() string {
replacer := strings.NewReplacer(
`==`, `Equal`,
`!=`, `NotEqual`,
`>=`, `GreaterOrEqual`,
`<=`, `LesserOrEqual`,
`=`, `Assign`,