Skip to content

Commit b83b14a

Browse files
committed
fix
1 parent 25e6226 commit b83b14a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mlir/lib/IR/BuiltinAttributes.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1306,7 +1306,8 @@ int64_t DenseElementsAttr::getNumElements() const {
13061306

13071307
/// Utility method to write a range of APInt values to a buffer.
13081308
template <typename APRangeT>
1309-
static void writeAPIntsToBuffer(size_t storageWidth, SmallVector<char> &data,
1309+
static void writeAPIntsToBuffer(size_t storageWidth,
1310+
SmallVectorImpl<char> &data,
13101311
APRangeT &&values) {
13111312
size_t numValues = llvm::size(values);
13121313
data.resize(llvm::divideCeil(storageWidth * numValues, CHAR_BIT));

0 commit comments

Comments
 (0)