From f2e545b2fdca7874a4ed95c0e44d3c3a4eca1bd4 Mon Sep 17 00:00:00 2001 From: Didier Verna Date: Wed, 5 Jan 2011 18:57:18 +0100 Subject: [PATCH] Fix ABCL warning in validate-superclass. src/ ChangeLog addition: 2011-01-05 Didier Verna * util.lisp (validate-superclass): Declare CLASS and SUPERCLASS ignorable for ABCL. --- src/util.lisp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/util.lisp b/src/util.lisp index cfe4cb4..3416262 100644 --- a/src/util.lisp +++ b/src/util.lisp @@ -228,6 +228,7 @@ See REPLACE-KEY for more information on the replacement syntax." (defmacro validate-superclass (class superclass) "Validate SUPERCLASS classes for CLASS classes." ;; #### PORTME. + #+abcl (declare (ignore class superclass)) #+abcl '(progn) #-abcl `(defmethod #+sbcl sb-mop:validate-superclass -- 2.11.4.GIT