Nikolay Sivov : usp10: Remove unused helper (Clang).

Alexandre Julliard julliard at wine.codeweavers.com
Mon Nov 30 09:54:01 CST 2015


Module: wine
Branch: master
Commit: f47f8d2acdca96d2bcd970e54a6065bf485560d9
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=f47f8d2acdca96d2bcd970e54a6065bf485560d9

Author: Nikolay Sivov <nsivov at codeweavers.com>
Date:   Fri Nov 27 21:51:59 2015 +0300

usp10: Remove unused helper (Clang).

Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/usp10/usp10.c | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/dlls/usp10/usp10.c b/dlls/usp10/usp10.c
index f3fb369..f0bbafe 100644
--- a/dlls/usp10/usp10.c
+++ b/dlls/usp10/usp10.c
@@ -719,11 +719,6 @@ static inline void *heap_alloc_zero(SIZE_T size)
     return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, size);
 }
 
-static inline void *heap_realloc_zero(LPVOID mem, SIZE_T size)
-{
-    return HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, mem, size);
-}
-
 static inline BOOL heap_free(LPVOID mem)
 {
     return HeapFree(GetProcessHeap(), 0, mem);




More information about the wine-cvs mailing list