From b11510d5dfaf82b0979b3d1d0b075c937d6371a7 Mon Sep 17 00:00:00 2001 From: Mehdi Amini Date: Sun, 2 Jan 2022 01:24:54 +0000 Subject: [PATCH] Apply clang-tidy fixes for modernize-use-using to MLIR (NFC) Reviewed By: rriddle, Mogball Differential Revision: https://reviews.llvm.org/D116357 --- mlir/lib/ExecutionEngine/SparseTensorUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mlir/lib/ExecutionEngine/SparseTensorUtils.cpp b/mlir/lib/ExecutionEngine/SparseTensorUtils.cpp index 32faad2..927284e 100644 --- a/mlir/lib/ExecutionEngine/SparseTensorUtils.cpp +++ b/mlir/lib/ExecutionEngine/SparseTensorUtils.cpp @@ -691,7 +691,7 @@ extern "C" { /// type is 64-bit, but targets with different "index" bit widths should link /// with an alternatively built runtime support library. // TODO: support such targets? -typedef uint64_t index_t; +using index_t = uint64_t; //===----------------------------------------------------------------------===// // -- 2.7.4