diff options
author | Andrea Canciani <ranma42@gmail.com> | 2011-03-16 16:48:18 +0100 |
---|---|---|
committer | Andrea Canciani <ranma42@gmail.com> | 2011-03-17 17:45:57 +0100 |
commit | 75fea162d985bea622afa59771fb2d07f5241d1b (patch) | |
tree | 5876692cd2ba574481210fae292eaf7f06005028 /test/line-width-scale.c | |
parent | 4ef32a36ba1e457e8dd6244a6483866d33477aac (diff) |
test: Cleanup macros
The ARRAY_LENGTH macro is used by many tests, although sometimes it is
named ARRAY_SIZE. Define it just once in cairo-test.h and reuse it.
In a similar way, MAX() and MIN() are currently defined in some
specific tests, while they could be reused.
Diffstat (limited to 'test/line-width-scale.c')
-rw-r--r-- | test/line-width-scale.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/line-width-scale.c b/test/line-width-scale.c index 68e1f111..037b887f 100644 --- a/test/line-width-scale.c +++ b/test/line-width-scale.c @@ -143,8 +143,6 @@ scale_path_not_line_width (cairo_t *cr) cairo_restore (cr); } -#define ARRAY_SIZE(arr) (sizeof(arr)/sizeof(arr[0])) - static cairo_test_status_t draw (cairo_t *cr, int width, int height) { |