diff options
-rw-r--r-- | AK/Endian.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/AK/Endian.h b/AK/Endian.h index fa05afd7f6..3b4b34aa94 100644 --- a/AK/Endian.h +++ b/AK/Endian.h @@ -88,10 +88,6 @@ public: constexpr operator T() const { return convert_between_host_and_little_endian(m_value); } - // This returns the internal representation. In this case, that is the value stored in little endian format. - constexpr Bytes bytes() { return Bytes { &m_value, sizeof(m_value) }; } - constexpr ReadonlyBytes bytes() const { return ReadonlyBytes { &m_value, sizeof(m_value) }; } - private: T m_value { 0 }; }; @@ -108,10 +104,6 @@ public: constexpr operator T() const { return convert_between_host_and_big_endian(m_value); } - // This returns the internal representation. In this case, that is the value stored in big endian format. - constexpr Bytes bytes() { return Bytes { &m_value, sizeof(m_value) }; } - constexpr ReadonlyBytes bytes() const { return ReadonlyBytes { &m_value, sizeof(m_value) }; } - private: T m_value { 0 }; }; |