From 9d62653585aa7c05f3f020e224d3f5c286dd118b Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Thu, 23 Aug 2001 00:23:26 +0000 Subject: [PATCH] fixed typo in RandomAccessContainerConcept [SVN r10910] --- include/boost/concept_check.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/concept_check.hpp b/include/boost/concept_check.hpp index 819dda8..a193831 100644 --- a/include/boost/concept_check.hpp +++ b/include/boost/concept_check.hpp @@ -712,7 +712,7 @@ struct require_same { typedef T type; }; const_constraints(c); } - void const_constraits(const RandomAccessContainer& c) { + void const_constraints(const RandomAccessContainer& c) { const_reference r = c[n]; ignore_unused_variable_warning(r); }