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