You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
return i >= size() ? boost::throw_exception(std::out_of_range ("array<>: index out of range")), true : true;
Possible misuse of comma operator here
Initially I thought of making a PR to address it, but I don't really understand the expression at that line. Why is boost::throw_exception followed by , true ?