[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); 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: