Remove redundant inline specifiers (#72)

pull/74/head
Pharap 3 years ago committed by GitHub
parent 8d0ef25aec
commit 36c5368696
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/FixedPoints/SFixed.h
  2. 4
      src/FixedPoints/UFixed.h

@ -63,8 +63,8 @@ protected:
const InternalType value;
public:
constexpr inline explicit RawType(const InternalType & value) : value(value) {}
constexpr inline explicit operator InternalType() const { return this->value; }
constexpr explicit RawType(const InternalType & value) : value(value) {}
constexpr explicit operator InternalType() const { return this->value; }
};
protected:

@ -63,8 +63,8 @@ protected:
const InternalType value;
public:
constexpr inline explicit RawType(const InternalType & value) : value(value) {}
constexpr inline explicit operator InternalType() const { return this->value; }
constexpr explicit RawType(const InternalType & value) : value(value) {}
constexpr explicit operator InternalType() const { return this->value; }
};
protected:

Loading…
Cancel
Save