From ad09cd3f0dad5d34b803c85c94c048a2f6a89d0d Mon Sep 17 00:00:00 2001 From: Adrian Kuegel Date: Mon, 27 Mar 2023 13:03:53 +0200 Subject: [PATCH] [mlir][ClangTidy] Remove redundant return (NFC). --- mlir/unittests/Debug/ExecutionContextTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mlir/unittests/Debug/ExecutionContextTest.cpp b/mlir/unittests/Debug/ExecutionContextTest.cpp index d757d545..642adff 100644 --- a/mlir/unittests/Debug/ExecutionContextTest.cpp +++ b/mlir/unittests/Debug/ExecutionContextTest.cpp @@ -29,7 +29,7 @@ struct ThirdAction : public ActionImpl { }; // Simple action that does nothing. -void noOp() { return; } +void noOp() {} /// This test executes a stack of nested action and check that the backtrace is /// as expect. -- 2.7.4