On Mon, Mar 17, 2014 at 11:35 AM, Jean-Marc Lasgouttes
wrote:
> 17/03/2014 11:09, Vincent van Ravesteijn:
>
>>> Author const & AuthorList::get(int id) const
>>> {
>>> - LBUFERR(id < (int)authors_.size());
>>> + LASSERT(id < (int)authors_.size() , return authors_[0]);
>>> r
17/03/2014 11:09, Vincent van Ravesteijn:
Author const & AuthorList::get(int id) const
{
- LBUFERR(id < (int)authors_.size());
+ LASSERT(id < (int)authors_.size() , return authors_[0]);
return authors_[id];
}
Yes, I was wondering about this. On one hand, your commit m
On Sat, Mar 15, 2014 at 5:39 PM, Richard Heck wrote:
> commit a818ed0aab0951a3eacb90944f56bf8ee20e09e6
> Author: Richard Heck
> Date: Mon Mar 10 17:02:17 2014 -0400
>
> Accidentally overwrote this commit of Vincent's.
>
> diff --git a/src/Author.cpp b/src/Author.cpp
> index fef6512..79e7de0