[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Compiler Warning from MAKE-PARAMETER-REFERENCES
- To: commonloops.pa@Xerox.COM
- Subject: Compiler Warning from MAKE-PARAMETER-REFERENCES
- From: goldman@vaxa.isi.edu
- Date: Thu, 15 Dec 88 17:29:01 PST
- Posted-date: Thu, 15 Dec 88 17:29:01 PST
- Redistributed: commonloops.pa
- Sender: goldman@vaxa.isi.edu
Can someone explain the following warning issued when I compile the
DEFMETHOD form below?
"Warning (not associated with any definition):
In defmethod M23 (TEST23), there is a
redundant ignore declaration for the parameter X."
If this warning is appropriate here, why? If not here, where?
I thought IGNORE declarations were only correct when they WERE "redundant" !!!
Neil
----------------------------------------------------------------
(defclass test23 () ())
(defmethod m23 ((x test23)) (declare (ignore x)) 7)