Skip to content

Commit 36c5368

Browse files
authored
Remove redundant inline specifiers (#72)
1 parent 8d0ef25 commit 36c5368

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/FixedPoints/SFixed.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ class SFixed
6363
const InternalType value;
6464

6565
public:
66-
constexpr inline explicit RawType(const InternalType & value) : value(value) {}
67-
constexpr inline explicit operator InternalType() const { return this->value; }
66+
constexpr explicit RawType(const InternalType & value) : value(value) {}
67+
constexpr explicit operator InternalType() const { return this->value; }
6868
};
6969

7070
protected:

src/FixedPoints/UFixed.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ class UFixed
6363
const InternalType value;
6464

6565
public:
66-
constexpr inline explicit RawType(const InternalType & value) : value(value) {}
67-
constexpr inline explicit operator InternalType() const { return this->value; }
66+
constexpr explicit RawType(const InternalType & value) : value(value) {}
67+
constexpr explicit operator InternalType() const { return this->value; }
6868
};
6969

7070
protected:

0 commit comments

Comments
 (0)