Skip to content

Commit fb557df

Browse files
committed
Fix clang-format issue in AsmState.h
1 parent d062cb8 commit fb557df

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mlir/include/mlir/IR/AsmState.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,8 @@ class AsmResourceBlob {
144144
/// Return the underlying data as an array of the given type. This is an
145145
/// inherrently unsafe operation, and should only be used when the data is
146146
/// known to be of the correct type.
147-
template <typename T> ArrayRef<T> getDataAs() const {
147+
template <typename T>
148+
ArrayRef<T> getDataAs() const {
148149
return llvm::ArrayRef<T>((const T *)data.data(), data.size() / sizeof(T));
149150
}
150151

0 commit comments

Comments
 (0)