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
functionPointerFor:inClass: has several implementations but the argument is not used.
We should refactor the code to remove the extra argument.
functionPointerFor: primIdx inClass: theClass
"Find an actual function pointer for this primitiveIndex. This is an opportunity to specialise the prim for the relevant class (format for example). Default for now is simply the entry in the base primitiveTable."<api><returnTypeC:'void (*functionPointerForinClass(sqInt primIdx,sqInt theClass))(void)'>^primIdx >MaxPrimitiveIndexifTrue: [0] ifFalse: [primitiveTable at: primIdx]
The text was updated successfully, but these errors were encountered:
functionPointerFor:inClass:
has several implementations but the argument is not used.We should refactor the code to remove the extra argument.
The text was updated successfully, but these errors were encountered: