gdiplus/tests: Fix compiler warnings with flag -Wunused-macros.

oldstable
André Hentschel 2014-12-10 23:47:50 +01:00 committed by Alexandre Julliard
parent 3977851004
commit e63b0a0a45
1 changed files with 0 additions and 1 deletions

View File

@ -28,7 +28,6 @@
#define expect(expected, got) ok((got) == (expected), "Expected %d, got %d\n", (INT)(expected), (INT)(got))
#define expectf_(expected, got, precision) ok(fabs((expected) - (got)) <= (precision), "Expected %f, got %f\n", (expected), (got))
#define expectf(expected, got) expectf_((expected), (got), 0.001)
#define TABLE_LEN (23)
static const REAL mm_per_inch = 25.4;
static const REAL point_per_inch = 72.0;