Skip to content

Commit

Permalink
add UInt8
Browse files Browse the repository at this point in the history
  • Loading branch information
Moelf committed Oct 20, 2024
1 parent 09ddddc commit 1b190d2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/RNTuple/Writing/constants.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ const RNTUPLE_WRITE_TYPE_IDX_DICT = Dict(
UInt64 => (0x0A, sizeof(UInt64) * 8),
UInt32 => (0x0B, sizeof(UInt32) * 8),
UInt16 => (0x0C, sizeof(UInt16) * 8),
UInt8 => (0x0D, sizeof(UInt8) * 8),
Int64 => (0x16, sizeof(Int64) * 8),
Int32 => (0x17, sizeof(Int32) * 8),
Int16 => (0x18, sizeof(Int16) * 8),
Expand All @@ -24,6 +25,7 @@ const RNTUPLE_WRITE_TYPE_CPPNAME_DICT = Dict(
Int16 => "std::int16_t",
Int32 => "std::int32_t",
Int64 => "std::int64_t",
UInt8 => "std::uint8_t",
UInt16 => "std::uint16_t",
UInt32 => "std::uint32_t",
UInt64 => "std::uint64_t",
Expand Down

0 comments on commit 1b190d2

Please sign in to comment.