From b353d45f2d1c42d041504090e9758498fc0f1514 Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Tue, 27 Jan 2004 18:34:00 +0000 Subject: [PATCH] added boost::ignore_unused_variable_warning(r); [SVN r22009] --- include/boost/iterator/iterator_concepts.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/boost/iterator/iterator_concepts.hpp b/include/boost/iterator/iterator_concepts.hpp index 50e5546..26a23c9 100644 --- a/include/boost/iterator/iterator_concepts.hpp +++ b/include/boost/iterator/iterator_concepts.hpp @@ -105,6 +105,7 @@ namespace boost_concepts { void constraints() { const value_type& r = *i; + boost::ignore_unused_variable_warning(r); } Iterator i; };