diff options
author | tfarina <tfarina@chromium.org> | 2014-10-31 07:06:00 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-31 07:06:01 -0700 |
commit | 58f467c2103da72ef699da5d961f8e285a406452 (patch) | |
tree | 26f2722c0b231a81129afbe6ce5603475739ee15 /include | |
parent | 0130c30d0ac71a26683cca39b43405fd66df3ddf (diff) |
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
Diffstat (limited to 'include')
-rw-r--r-- | include/gpu/GrTypes.h | 5 |
1 files changed, 0 insertions, 5 deletions
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 @@ -70,11 +70,6 @@ template <typename T> const T& GrMax(const T& a, const T& b) { } /** - * Count elements in an array - */ -#define GR_ARRAY_COUNT(array) SK_ARRAY_COUNT(array) - -/** * 16.16 fixed point type */ typedef int32_t GrFixed; |