Remove blank lines between template<> and struct

The blank line disconnects the struct from its template definition,
which makes the whole definition harder to comprehend.
This commit is contained in:
Christian Helmuth 2023-06-29 08:15:43 +02:00 committed by Norman Feske
parent 15b30f3547
commit 7563cf5c55

View File

@ -198,7 +198,6 @@ class Genode::Register_set : Noncopyable
*/
template <off_t _OFFSET, unsigned long _ACCESS_WIDTH,
bool _STRICT_WRITE = false>
struct Register
:
public Genode::Register<_ACCESS_WIDTH>,
@ -286,7 +285,6 @@ class Genode::Register_set : Noncopyable
template <off_t _OFFSET, unsigned long _ACCESS_WIDTH,
unsigned long _ITEMS, unsigned long _ITEM_WIDTH,
bool _STRICT_WRITE = false>
struct Register_array : public Register<_OFFSET, _ACCESS_WIDTH,
_STRICT_WRITE>
{