Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/FixedPointsArduino/commit/e9f532f93cac0840ff803614418f01641d136fbb You should set ROOT_URL correctly, otherwise the web may not work correctly.

Remove redundant inline specifiers

pull/72/head
Pharap 4 years ago committed by GitHub
parent 8d0ef25aec
commit e9f532f93c
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