Skip to content

Commit

Permalink
Apply clang-tidy fixes for modernize-use-using in SparseBufferRewriti…
Browse files Browse the repository at this point in the history
…ng.cpp (NFC)
  • Loading branch information
joker-eph committed Oct 12, 2022
1 parent add7bf1 commit f628d6c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ static constexpr const char kSortNonstableFuncNamePrefix[] =
static constexpr const char kSortStableFuncNamePrefix[] =
"_sparse_sort_stable_";

typedef function_ref<void(OpBuilder &, ModuleOp, func::FuncOp, size_t)>
FuncGeneratorType;
using FuncGeneratorType =
function_ref<void(OpBuilder &, ModuleOp, func::FuncOp, size_t)>;

/// Constructs a function name with this format to facilitate quick sort:
/// <namePrefix><dim>_<x type>_<y0 type>..._<yn type>
Expand Down

0 comments on commit f628d6c

Please sign in to comment.