Cosmetics

Change-Id: I65ee75db015a402c8d93f10f03512669d6fa8e79
This commit is contained in:
Tor Lillqvist 2015-04-01 10:47:53 +03:00
parent 6e530a23c8
commit 05fa65d3c4

View File

@ -47,7 +47,8 @@ public:
public:
Iterator( int value ) :
m_value( value )
{ }
{
}
T operator*( void ) const
{
@ -67,7 +68,6 @@ public:
private:
int m_value;
};
};
template< typename T >
@ -82,7 +82,6 @@ typename enumrange<T>::Iterator end( enumrange<T> )
return typename enumrange<T>::Iterator( (static_cast<int>(T::LAST)) + 1 );
}
}; // namespace o3tl
#endif /* INCLUDED_O3TL_ENUMRANGE_HXX */