[mlir][ClangTidy] Remove redundant return (NFC).
authorAdrian Kuegel <akuegel@google.com>
Mon, 27 Mar 2023 11:03:53 +0000 (13:03 +0200)
committerAdrian Kuegel <akuegel@google.com>
Mon, 27 Mar 2023 11:03:53 +0000 (13:03 +0200)
mlir/unittests/Debug/ExecutionContextTest.cpp

index d757d54..642adff 100644 (file)
@@ -29,7 +29,7 @@ struct ThirdAction : public ActionImpl<ThirdAction> {
 };
 
 // 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.