genbindings: fix up naming for << and >> functions

This commit is contained in:
mappu 2024-08-15 19:51:58 +12:00
parent c00976ba0d
commit 3dafa8dba4

View File

@ -63,6 +63,9 @@ func (nm CppMethod) SafeMethodName() string {
`>=`, `GreaterOrEqual`,
`<=`, `LesserOrEqual`,
`=`, `Assign`,
`<<`, `ShiftLeft`, // Qt classes use it more for stream functions e.g. in QDataStream
`>>`, `ShiftRight`,
`>`, `Greater`,
`<`, `Lesser`,