[Mlir-commits] [mlir] 4313af3 - [mlir] Improve line breaks of code snippets in comments (NFC).
Ingo Müller
llvmlistbot at llvm.org
Wed Jan 25 05:05:38 PST 2023
Author: Ingo Müller
Date: 2023-01-25T13:05:32Z
New Revision: 4313af3750b26276ada38386b0c628e77d04bb72
URL: https://github.com/llvm/llvm-project/commit/4313af3750b26276ada38386b0c628e77d04bb72
DIFF: https://github.com/llvm/llvm-project/commit/4313af3750b26276ada38386b0c628e77d04bb72.diff
LOG: [mlir] Improve line breaks of code snippets in comments (NFC).
Reviewed By: ingomueller-net
Differential Revision: https://reviews.llvm.org/D142528
Added:
Modified:
mlir/include/mlir/Transforms/DialectConversion.h
Removed:
################################################################################
diff --git a/mlir/include/mlir/Transforms/DialectConversion.h b/mlir/include/mlir/Transforms/DialectConversion.h
index 5c0d49295e75f..9e10e3f96d54f 100644
--- a/mlir/include/mlir/Transforms/DialectConversion.h
+++ b/mlir/include/mlir/Transforms/DialectConversion.h
@@ -261,9 +261,8 @@ class TypeConverter {
return std::optional<LogicalResult>();
});
}
- /// With callback of form: `std::optional<LogicalResult>(T,
- /// SmallVectorImpl<Type>
- /// &)`
+ /// With callback of form: `std::optional<LogicalResult>(
+ /// T, SmallVectorImpl<Type> &)`.
template <typename T, typename FnT>
std::enable_if_t<std::is_invocable_v<FnT, T, SmallVectorImpl<Type> &>,
ConversionCallbackFn>
@@ -274,9 +273,8 @@ class TypeConverter {
return callback(type, results);
});
}
- /// With callback of form: `std::optional<LogicalResult>(T,
- /// SmallVectorImpl<Type>
- /// &, ArrayRef<Type>)`.
+ /// With callback of form: `std::optional<LogicalResult>(
+ /// T, SmallVectorImpl<Type> &, ArrayRef<Type>)`.
template <typename T, typename FnT>
std::enable_if_t<
std::is_invocable_v<FnT, T, SmallVectorImpl<Type> &, ArrayRef<Type>>,
More information about the Mlir-commits
mailing list