Module: wine Branch: master Commit: a6657bb084dfba0664dc360ad3740f450b76709a URL: http://source.winehq.org/git/wine.git/?a=commit;h=a6657bb084dfba0664dc360ad3...
Author: André Hentschel nerv@dawncrow.de Date: Wed Dec 10 23:47:20 2014 +0100
itss/tests: Fix compiler warnings with flag -Wunused-macros.
---
dlls/itss/tests/protocol.c | 6 ------ 1 file changed, 6 deletions(-)
diff --git a/dlls/itss/tests/protocol.c b/dlls/itss/tests/protocol.c index 6fd3431..663411f 100644 --- a/dlls/itss/tests/protocol.c +++ b/dlls/itss/tests/protocol.c @@ -41,12 +41,6 @@ called_ ## func = TRUE; \ }while(0)
-#define CHECK_EXPECT2(func) \ - do { \ - ok(expect_ ##func, "unexpected call " #func "\n"); \ - called_ ## func = TRUE; \ - }while(0) - #define SET_CALLED(func) \ expect_ ## func = called_ ## func = FALSE