Skip to content

Commit 5ebf0e1

Browse files
author
Luc Forget
committed
[MLIR][WASM] Fix template to please MSVC
1 parent 6e952fc commit 5ebf0e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/lib/Target/Wasm/TranslateFromWasm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ template <std::byte Byte>
106106
struct UniqueByte : ByteSequence<Byte> {};
107107

108108
template <typename T, T... Values>
109-
constexpr ByteSequence<std::byte{Values}...>
109+
constexpr ByteSequence<std::byte(Values)...>
110110
byteSeqFromIntSeq(std::integer_sequence<T, Values...>) {
111111
return {};
112112
}

0 commit comments

Comments
 (0)