1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-11-01 11:16:16 +00:00

Remove redundant inlines.

This commit is contained in:
Thomas Harte
2025-02-04 00:00:12 -05:00
parent 259070c658
commit ca7c1bc631

View File

@@ -58,7 +58,7 @@ public:
}
/// @returns The current value of the CRC.
inline IntType get_value() const {
IntType get_value() const {
const IntType result = value_ ^ output_xor;
if constexpr (reflect_output) {
return Numeric::bit_reverse(result);
@@ -68,7 +68,7 @@ public:
}
/// Sets the current value of the CRC.
inline void set_value(const IntType value) { value_ = value; }
void set_value(const IntType value) { value_ = value; }
/*!
A compound for: