Skip to content

Commit 3fda6b3

Browse files
committed
OrcLib: Text: Hex: fix FromHex build issue
1 parent f5a3f99 commit 3fda6b3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/OrcLib/Text/Hex.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ Result<Output> FromHexToLittleEndian(std::basic_string_view<CharT> input)
134134
template <typename InputIt, typename OutputIt>
135135
OutputIt FromHex(InputIt first, InputIt last, OutputIt out)
136136
{
137-
constexpr struct NibbleTable::NibbleTable table;
137+
constexpr struct Details::NibbleTable table;
138138

139139
auto it = first;
140140
if (std::distance(first, last) % 2 != 0)

0 commit comments

Comments
 (0)