From 590fed825c9ffd8bb4d3278706d908dec2c8cc86 Mon Sep 17 00:00:00 2001 From: "Jeffrey Lee Hellrung, Jr." Date: Mon, 28 May 2012 07:56:11 +0000 Subject: [PATCH] [concept_check] "Shadowed variable warning" (fixes #6738) [SVN r78702] --- 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 01b2f4e..bf5a2af 100644 --- a/include/boost/concept_check.hpp +++ b/include/boost/concept_check.hpp @@ -1052,11 +1052,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: