Changeset 5888


Ignore:
Timestamp:
Feb 10, 2007, 10:54:43 PM (18 years ago)
Author:
Gary Byers
Message:

Make structure return-type explicit in objc-message-send calls in
send/stret and variants.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/examples/bridge.lisp

    r5865 r5888  
    756756          (error "The message ~S must be sent using SEND/STRET" msg)
    757757          (if (null super)
    758             `(objc-message-send-stret ,s ,o ,msg ,@arglist :void)
    759             `(objc-message-send-super-stret ,s ,super ,msg ,@arglist :void)))
     758            `(objc-message-send-stret ,s ,o ,msg ,@arglist ,(car (objc-method-info-signature method-info)))
     759            `(objc-message-send-super-stret ,s ,super ,msg ,@arglist ,(car (objc-method-info-signature method-info)))))
    760760        (if s
    761761          ;; STRET provided but not required
Note: See TracChangeset for help on using the changeset viewer.