Skip to content

Commit a1fc066

Browse files
committed
fix msvc debug build
Signed-off-by: Bangtian Liu <[email protected]>
1 parent d5d87f9 commit a1fc066

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mlir/tools/mlir-linalg-ods-gen/mlir-linalg-ods-yaml-gen.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,9 @@ struct ScalarAssign {
117117
};
118118

119119
struct LinalgStructuredOpConfig {
120-
SmallVector<LinalgOperandDef> args;
120+
SmallVector<LinalgOperandDef, 4> args;
121121
LinalgIndexingMapsConfig indexingMaps;
122-
SmallVector<LinalgIteratorTypeDef> iteratorTypes;
122+
SmallVector<LinalgIteratorTypeDef, 4> iteratorTypes;
123123
std::vector<ScalarAssign> assignments;
124124
};
125125

0 commit comments

Comments
 (0)