Accidentally overwrote this commit of Vincent's.

This commit is contained in:
Richard Heck 2014-03-10 17:02:17 -04:00
parent a8c05f20be
commit a818ed0aab

View File

@ -116,7 +116,7 @@ void AuthorList::recordCurrentAuthor(Author const & a)
Author const & AuthorList::get(int id) const
{
LBUFERR(id < (int)authors_.size());
LASSERT(id < (int)authors_.size() , return authors_[0]);
return authors_[id];
}