[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); c.swap(c);
} }
void const_constraints(const C& c) { void const_constraints(const C& cc) {
ci = c.begin(); ci = cc.begin();
ci = c.end(); ci = cc.end();
n = c.size(); n = cc.size();
b = c.empty(); b = cc.empty();
} }
private: private: