This is not a recoverable error.

This commit is contained in:
Richard Heck 2014-03-10 15:39:43 -04:00
parent ce26efcbd4
commit bdaad6e6ff

View File

@ -102,9 +102,7 @@ int AuthorList::record(Author const & a)
void AuthorList::record(int id, Author const & a) void AuthorList::record(int id, Author const & a)
{ {
// LASSERT: What should we do here? LBUFERR(unsigned(id) < authors_.size());
LASSERT(unsigned(id) < authors_.size(), /**/);
authors_[id] = a; authors_[id] = a;
} }
@ -118,8 +116,7 @@ void AuthorList::recordCurrentAuthor(Author const & a)
Author const & AuthorList::get(int id) const Author const & AuthorList::get(int id) const
{ {
// authors_[0] is guaranteed to exist LBUFERR(id < (int)authors_.size());
LASSERT(id < (int)authors_.size() , return authors_[0]);
return authors_[id]; return authors_[id];
} }