From 7ddc076916aad3bb27e938962f73918ddce0672b Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Tue, 8 May 2012 16:38:55 +1000 Subject: [PATCH] Quiecse some unusused parameter warnings --- json/schema.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/json/schema.cpp b/json/schema.cpp index 57c19ddc..7fdb1810 100644 --- a/json/schema.cpp +++ b/json/schema.cpp @@ -371,8 +371,8 @@ is_items_valid (const json::array &node, bool -is_additional_items_valid (const json::array &node, - const json::node &constraint) { +is_additional_items_valid (const json::array &, + const json::node &) { not_implemented (); return false; }