mirror of
https://github.com/boostorg/container.git
synced 2025-08-02 05:54:28 +02:00
Fix unused variable warning.
This commit is contained in:
@@ -2182,7 +2182,7 @@ class vector
|
|||||||
this->priv_merge_in_new_buffer(first, n, comp, alloc_version());
|
this->priv_merge_in_new_buffer(first, n, comp, alloc_version());
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
iterator pos(this->insert(this->cend(), first, last));
|
this->insert(this->cend(), first, last);
|
||||||
T *const raw_beg = this->priv_raw_begin();
|
T *const raw_beg = this->priv_raw_begin();
|
||||||
T *const raw_end = this->priv_raw_end();
|
T *const raw_end = this->priv_raw_end();
|
||||||
T *const raw_pos = raw_beg + s;
|
T *const raw_pos = raw_beg + s;
|
||||||
|
Reference in New Issue
Block a user