Skip to content

Commit 7724c4b

Browse files
committed
[mlir] Apply ClangTidy fixes
The get() call is redundant.
1 parent cdcefd2 commit 7724c4b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mlir/include/mlir/Dialect/Transform/IR/TransformInterfaces.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ class TransformState {
438438
}
439439
}
440440
#endif // NDEBUG
441-
return *it->second.get();
441+
return *it->second;
442442
}
443443

444444
/// Returns the mappings frame for the region in which the operation resides.
@@ -465,7 +465,7 @@ class TransformState {
465465
}
466466
}
467467
#endif // NDEBUG
468-
return *it->second.get();
468+
return *it->second;
469469
}
470470

471471
/// Updates the state to include the associations between op results and the

0 commit comments

Comments
 (0)