File tree Expand file tree Collapse file tree 2 files changed +0
-5
lines changed Expand file tree Collapse file tree 2 files changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -207,8 +207,6 @@ uint8_t Uuid::operator[](size_t index) const {
207207 return data_[index];
208208}
209209
210- std::array<uint8_t , Uuid::kLength > Uuid::ToBigEndianBytes () const { return data_; }
211-
212210std::string Uuid::ToString () const {
213211 return std::format (
214212 " {:02x}{:02x}{:02x}{:02x}-{:02x}{:02x}-{:02x}{:02x}-{:02x}{:02x}-{:02x}{:02x}{:02x}"
Original file line number Diff line number Diff line change @@ -61,9 +61,6 @@ class ICEBERG_EXPORT Uuid {
6161 // / \brief Create a UUID from a 16-byte array.
6262 static Result<Uuid> FromBytes (std::span<const uint8_t > bytes);
6363
64- // / \brief Get the raw bytes of the UUID in big-endian order.
65- std::array<uint8_t , kLength > ToBigEndianBytes () const ;
66-
6764 // / \brief Get the raw bytes of the UUID.
6865 std::span<const uint8_t > bytes () const { return data_; }
6966
You can’t perform that action at this time.
0 commit comments