From 58f467c2103da72ef699da5d961f8e285a406452 Mon Sep 17 00:00:00 2001 From: tfarina Date: Fri, 31 Oct 2014 07:06:00 -0700 Subject: Cleanup: Remove GR_ARRAY_COUNT macro. It is defined to SK_ARRAY_COUNT, and there are no uses of it. Lets just use the SK_ variant. BUG=None TEST=None R=bsalomon@google.com Review URL: https://codereview.chromium.org/691133003 --- include/gpu/GrTypes.h | 5 ----- 1 file changed, 5 deletions(-) (limited to 'include') diff --git a/include/gpu/GrTypes.h b/include/gpu/GrTypes.h index 49397a5f03..9c68af2ced 100644 --- a/include/gpu/GrTypes.h +++ b/include/gpu/GrTypes.h @@ -69,11 +69,6 @@ template const T& GrMax(const T& a, const T& b) { return (b < a) ? a : b; } -/** - * Count elements in an array - */ -#define GR_ARRAY_COUNT(array) SK_ARRAY_COUNT(array) - /** * 16.16 fixed point type */ -- cgit v1.2.3