From: Adrian Kuegel Date: Mon, 27 Mar 2023 11:03:53 +0000 (+0200) Subject: [mlir][ClangTidy] Remove redundant return (NFC). X-Git-Tag: upstream/17.0.6~13602 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ad09cd3f0dad5d34b803c85c94c048a2f6a89d0d;p=platform%2Fupstream%2Fllvm.git [mlir][ClangTidy] Remove redundant return (NFC). --- 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.