File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
mlir/include/mlir/Bytecode Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -109,7 +109,8 @@ class DialectBytecodeReader {
109109
110110 // / Typed version of getOrDeferParsingAttribute. Returns the attribute cast
111111 // / to the specified type, or nullptr if not resolved or cast fails.
112- template <typename T> T getOrDeferParsingAttribute () {
112+ template <typename T>
113+ T getOrDeferParsingAttribute () {
113114 return llvm::dyn_cast_or_null<T>(getOrDeferParsingAttribute ());
114115 }
115116
@@ -149,7 +150,8 @@ class DialectBytecodeReader {
149150
150151 // / Typed version of getOrDeferParsingType. Returns the type cast
151152 // / to the specified type, or nullptr if not resolved or cast fails.
152- template <typename T> T getOrDeferParsingType () {
153+ template <typename T>
154+ T getOrDeferParsingType () {
153155 return llvm::dyn_cast_or_null<T>(getOrDeferParsingType ());
154156 }
155157
You can’t perform that action at this time.
0 commit comments