mirror of
https://github.com/boostorg/histogram.git
synced 2026-01-29 19:42:12 +00:00
cosmetic
This commit is contained in:
@@ -133,12 +133,11 @@ private:
|
||||
typename disable_if<is_same<T, wtype>, void>::type
|
||||
increase_impl(size_type i)
|
||||
{
|
||||
typedef typename next_storage_type<T>::type U;
|
||||
T& b = static_cast<T*>(buffer_)[i];
|
||||
if (b == std::numeric_limits<T>::max())
|
||||
{
|
||||
grow_impl<T>();
|
||||
increase_impl<U>(i);
|
||||
increase_impl<typename next_storage_type<T>::type>(i);
|
||||
}
|
||||
else {
|
||||
++b;
|
||||
|
||||
Reference in New Issue
Block a user