From ff445219207c53e8a7d03ac97977dbd6f20d3c51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Hunold?= Date: Mon, 3 Dec 2007 18:47:17 +0000 Subject: [PATCH] Silence unused paramter warning in release mode. [SVN r41649] --- include/boost/python/converter/implicit.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/python/converter/implicit.hpp b/include/boost/python/converter/implicit.hpp index cf5d8fa6..8bbbfd5a 100644 --- a/include/boost/python/converter/implicit.hpp +++ b/include/boost/python/converter/implicit.hpp @@ -32,7 +32,7 @@ struct implicit arg_from_python get_source(obj); bool convertible = get_source.convertible(); - BOOST_ASSERT(convertible); + BOOST_VERIFY(convertible); new (storage) Target(get_source());