1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

fix code-style

Signed-off-by: Steffen Vogel <steffen.vogel@opal-rt.com>
This commit is contained in:
Steffen Vogel 2023-04-03 13:05:24 +00:00 committed by Steffen Vogel
parent 375a76461c
commit 721c2c95ba

View file

@ -40,13 +40,13 @@ public:
}
inline
bool operator< (const Version &rhs)
bool operator<(const Version &rhs)
{
return cmp(*this, rhs) < 0;
}
inline
bool operator> (const Version &rhs)
bool operator>(const Version &rhs)
{
return cmp(*this, rhs) > 0;
}