Skip to content

Commit

Permalink
Apply clang-tidy fixes for modernize-use-equals-default in TestLinalg…
Browse files Browse the repository at this point in the history
…DecomposeOps.cpp (NFC)
  • Loading branch information
joker-eph committed Sep 12, 2022
1 parent 0969d0d commit 6e5c654
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions mlir/test/lib/Dialect/Linalg/TestLinalgDecomposeOps.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ struct TestLinalgDecomposeOps
MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(TestLinalgDecomposeOps)

TestLinalgDecomposeOps() = default;
TestLinalgDecomposeOps(const TestLinalgDecomposeOps &pass)
: PassWrapper(pass) {}
TestLinalgDecomposeOps(const TestLinalgDecomposeOps &pass) = default;
void getDependentDialects(DialectRegistry &registry) const override {
registry.insert<AffineDialect, linalg::LinalgDialect>();
}
Expand Down

0 comments on commit 6e5c654

Please sign in to comment.