Skip to content

Commit 97c30b1

Browse files
chelinilorenzo chelini
authored andcommitted
Drop extra ';' in AffineUtils
1 parent fc0aecb commit 97c30b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/mlir-clang/Lib/AffineUtils.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ void AffineLoopDescriptor::setUpperBound(mlir::Value value) {
4343
}
4444

4545
int AffineLoopDescriptor::getStep() const { return impl->step; }
46-
void AffineLoopDescriptor::setStep(int value) { impl->step = value; };
46+
void AffineLoopDescriptor::setStep(int value) { impl->step = value; }
4747

4848
clang::VarDecl *AffineLoopDescriptor::getName() const { return impl->indVar; }
4949
void AffineLoopDescriptor::setName(clang::VarDecl *value) {

0 commit comments

Comments
 (0)