[concept_check] "Shadowed variable warning" (refs #6738)

[SVN r78501]
This commit is contained in:
Jeffrey Lee Hellrung, Jr.
2012-05-18 02:58:12 +00:00
parent 60b5eb331c
commit 38154ae6cf

View File

@ -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: