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

[SVN r78702]
This commit is contained in:
Jeffrey Lee Hellrung, Jr.
2012-05-28 07:56:11 +00:00
parent da5ab9b807
commit 590fed825c

View File

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