mirror of
https://github.com/boostorg/container.git
synced 2025-08-02 22:14:26 +02:00
fix stable_vector#index_of's doxygen comment
This commit is contained in:
@@ -1293,11 +1293,10 @@ class stable_vector
|
|||||||
return (this->index.empty()) ? this->cend() : iterator(node_ptr_traits::static_cast_from(this->index[n]));
|
return (this->index.empty()) ? this->cend() : iterator(node_ptr_traits::static_cast_from(this->index[n]));
|
||||||
}
|
}
|
||||||
|
|
||||||
//! <b>Requires</b>: size() >= n.
|
//! <b>Requires</b>: begin() <= p <= end().
|
||||||
//!
|
//!
|
||||||
//! <b>Effects</b>: Returns an iterator to the nth element
|
//! <b>Effects</b>: Returns the index of the element pointed by p
|
||||||
//! from the beginning of the container. Returns end()
|
//! and size() if p == end().
|
||||||
//! if n == size().
|
|
||||||
//!
|
//!
|
||||||
//! <b>Throws</b>: Nothing.
|
//! <b>Throws</b>: Nothing.
|
||||||
//!
|
//!
|
||||||
|
Reference in New Issue
Block a user