mirror of
https://github.com/boostorg/concept_check.git
synced 2025-07-31 13:07:33 +02:00
@ -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:
|
||||||
|
Reference in New Issue
Block a user