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; }