From: Ryan Davis Date: Thu, 13 Sep 2012 17:27:13 +0000 (-0400) Subject: ignore some unused variables, two less style warnings X-Git-Tag: v6.4.0~15 X-Git-Url: http://git.kpe.io/?p=clsql.git;a=commitdiff_plain;h=2edf7f68a1dc681db575cda999283cac7e290a77;hp=803a1953a42918411b4119b724d7a6e7227da83e ignore some unused variables, two less style warnings --- diff --git a/sql/metaclasses.lisp b/sql/metaclasses.lisp index c3c81bb..ddaee4f 100644 --- a/sql/metaclasses.lisp +++ b/sql/metaclasses.lisp @@ -570,10 +570,12 @@ implementations." &optional database find-class-p) "the majority of this function is in expressions.lisp this is here to make loading be less painful (try-recompiles) in SBCL" + (declare (ignore find-class-p)) (database-identifier (view-table name) database)) (defmethod database-identifier ((name view-class-slot-definition-mixin) &optional database find-class-p) + (declare (ignore find-class-p)) (database-identifier (if (slot-boundp name 'column) (delistify-dsd (view-class-slot-column name))