Skip to content

Commit 20d955c

Browse files
committed
[mlir] Remove extra ';' outside of a function (NFC)
/llvm-project/mlir/lib/Conversion/MeshToMPI/MeshToMPI.cpp:70:2: error: extra ';' outside of a function is incompatible with C++98 [-Werror,-Wc++98-compat-extra-semi] }; ^ 1 error generated.
1 parent dc9d217 commit 20d955c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/lib/Conversion/MeshToMPI/MeshToMPI.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ static SmallVector<Value> getMixedAsValues(OpBuilder b, const Location &loc,
6767
}
6868
}
6969
return values;
70-
};
70+
}
7171

7272
/// Create operations converting a linear index to a multi-dimensional index.
7373
static SmallVector<Value> linearToMultiIndex(Location loc, OpBuilder b,

0 commit comments

Comments
 (0)