Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(352)

Unified Diff: include/gpu/GrClip.h

Issue 2185063002: require semi at the end of SkASSERT and friends (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: refactor do while as macro Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « include/core/SkTypes.h ('k') | src/core/SkLinearBitmapPipeline_sample.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/gpu/GrClip.h
diff --git a/include/gpu/GrClip.h b/include/gpu/GrClip.h
index 1cb1a2bcf60a9399da4a356ad5941cdb8a82febc..c74d25d77a3ff61171b24d303bc6d9d790d28c55 100644
--- a/include/gpu/GrClip.h
+++ b/include/gpu/GrClip.h
@@ -44,7 +44,7 @@ public:
fHasStencilClip = true;
if (deviceBounds) {
fDeviceBounds = *deviceBounds;
- SkASSERT(scissor.contains(*deviceBounds))
+ SkASSERT(scissor.contains(*deviceBounds));
} else {
fDeviceBounds = SkRect::Make(scissor);
}
@@ -75,7 +75,7 @@ public:
fHasStencilClip = false;
if (deviceBounds) {
fDeviceBounds = *deviceBounds;
- SkASSERT(scissor.contains(*deviceBounds))
+ SkASSERT(scissor.contains(*deviceBounds));
} else {
fDeviceBounds = SkRect::Make(scissor);
}
« no previous file with comments | « include/core/SkTypes.h ('k') | src/core/SkLinearBitmapPipeline_sample.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698