genbindings: fix linter warning about function comment

This commit is contained in:
mappu 2025-02-06 13:29:28 +13:00
parent 12df341a57
commit a2192d8eab

View File

@ -410,7 +410,7 @@ type CppClass struct {
PrivateMethods []string
}
// Virtual checks if the class has any virtual methods. This requires global
// VirtualMethods checks if the class has any virtual methods. This requires global
// state knowledge as virtual methods might have been inherited.
// C++ constructors cannot be virtual.
func (c *CppClass) VirtualMethods() []CppMethod {