From 38154ae6cf792cc741bbedca40111c0b5b5d8861 Mon Sep 17 00:00:00 2001 From: "Jeffrey Lee Hellrung, Jr." Date: Fri, 18 May 2012 02:58:12 +0000 Subject: [PATCH] [concept_check] "Shadowed variable warning" (refs #6738) [SVN r78501] --- include/boost/concept_check.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/boost/concept_check.hpp b/include/boost/concept_check.hpp index 97d704b..9cfd281 100644 --- a/include/boost/concept_check.hpp +++ b/include/boost/concept_check.hpp @@ -1050,11 +1050,11 @@ namespace boost c.swap(c); } - void const_constraints(const C& c) { - ci = c.begin(); - ci = c.end(); - n = c.size(); - b = c.empty(); + void const_constraints(const C& cc) { + ci = cc.begin(); + ci = cc.end(); + n = cc.size(); + b = cc.empty(); } private: