Skip to content

Commit 14e0801

Browse files
committed
feat: implement endian conversion utilities
1 parent 98984a6 commit 14e0801

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/iceberg/util/endian.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
namespace iceberg {
2929

30-
/// \brief Concept for values that can be written in little-endian format.
30+
/// \brief Concept for values that can be converted to/from another endian format.
3131
template <typename T>
3232
concept EndianConvertible = std::is_arithmetic_v<T> && !std::same_as<T, bool>;
3333

0 commit comments

Comments
 (0)