Skip to content

Commit eed3c6b

Browse files
fix for linux compile
1 parent 789756c commit eed3c6b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tsc/include/TypeScript/MLIRLogic/MLIRPrinter.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -328,10 +328,10 @@ class MLIRPrinter
328328
.template Case<mlir_ts::ConstType>([&](auto) {
329329
out << "const";
330330
})
331-
.Case<mlir_ts::SymbolType>([&](auto t) {
331+
.template Case<mlir_ts::SymbolType>([&](auto) {
332332
out << "Symbol";
333333
})
334-
.template Case<mlir_ts::NullType>([&](auto t) {
334+
.template Case<mlir_ts::NullType>([&](auto) {
335335
out << "null";
336336
})
337337
.template Case<mlir::NoneType>([&](auto) {

0 commit comments

Comments
 (0)