require semi at the end of SkASSERT and friends

R=bungeman@google.com
TBR=reed@google.com
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2185063002

Review-Url: https://codereview.chromium.org/2185063002
diff --git a/src/gpu/batches/GrAAStrokeRectBatch.cpp b/src/gpu/batches/GrAAStrokeRectBatch.cpp
index 8c42c9a..bbee3f8 100644
--- a/src/gpu/batches/GrAAStrokeRectBatch.cpp
+++ b/src/gpu/batches/GrAAStrokeRectBatch.cpp
@@ -124,8 +124,8 @@
                       const SkRect& devOutside, const SkRect& devInside)
             : INHERITED(ClassID())
             , fViewMatrix(viewMatrix) {
-        SkASSERT(!devOutside.isEmpty())
-        SkASSERT(!devInside.isEmpty())
+        SkASSERT(!devOutside.isEmpty());
+        SkASSERT(!devInside.isEmpty());
 
         fGeoData.emplace_back(Geometry{color, devOutside, devOutside, devInside, false});
         this->setBounds(devOutside, HasAABloat::kYes, IsZeroArea::kNo);