Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include <stdexcept> for std::out_of_range type #791

Merged
merged 1 commit into from
Mar 28, 2021
Merged

Include <stdexcept> for std::out_of_range type #791

merged 1 commit into from
Mar 28, 2021

Conversation

dtolnay
Copy link
Owner

@dtolnay dtolnay commented Mar 28, 2021

This exception type is used for checked indexing of rust::Slice and rust::Vec, for example the following. it is provided by the stdexcept header.

cxx/include/cxx.h

Lines 543 to 549 in 9b8ed98

template <typename T>
T &Slice<T>::at(std::size_t n) const {
if (n >= this->size()) {
panic<std::out_of_range>("rust::Slice index out of range");
}
return (*this)[n];
}

https://en.cppreference.com/w/cpp/error/out_of_range

@dtolnay dtolnay merged commit 457b9f3 into master Mar 28, 2021
@dtolnay dtolnay deleted the stdexcept branch March 28, 2021 07:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant