Index: src/gpu/GrTBSearch.h |
diff --git a/src/gpu/GrTBSearch.h b/src/gpu/GrTBSearch.h |
index cee4f2a414e5462360703efb0f8829bd6b8c990e..08b0b85f357cb2bc032f93947b2b107d464b7fd2 100644 |
--- a/src/gpu/GrTBSearch.h |
+++ b/src/gpu/GrTBSearch.h |
@@ -13,7 +13,7 @@ |
template <typename ELEM, typename KEY> |
int GrTBSearch(const ELEM array[], int count, KEY target) { |
- GrAssert(count >= 0); |
+ SkASSERT(count >= 0); |
if (0 == count) { |
// we should insert it at 0 |
return ~0; |