From 721c2c95ba012398a460988c036d7b162296c5ad Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 3 Apr 2023 13:05:24 +0000 Subject: [PATCH] fix code-style Signed-off-by: Steffen Vogel --- common/include/villas/version.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/include/villas/version.hpp b/common/include/villas/version.hpp index 97ede3068..c7c77c462 100644 --- a/common/include/villas/version.hpp +++ b/common/include/villas/version.hpp @@ -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; }