Remove redundant ;
authorJacques Pienaar <jpienaar@google.com>
Sat, 4 May 2019 19:22:30 +0000 (12:22 -0700)
committerMehdi Amini <joker.eph@gmail.com>
Mon, 6 May 2019 15:29:18 +0000 (08:29 -0700)
--

PiperOrigin-RevId: 246664861

mlir/tools/mlir-tblgen/OpDefinitionsGen.cpp

index de7bab2..3944145 100644 (file)
@@ -229,7 +229,7 @@ void OpMethodSignature::writeDefTo(raw_ostream &os,
 
 bool OpMethodSignature::endsWithRefOrPtr(StringRef type) {
   return type.endswith("&") || type.endswith("*");
-};
+}
 
 OpMethodBody::OpMethodBody(bool declOnly) : isEffective(!declOnly) {}