Nikolay Sivov : usp10: Remove unused helper (Clang).
Module: wine Branch: master Commit: f47f8d2acdca96d2bcd970e54a6065bf485560d9 URL: http://source.winehq.org/git/wine.git/?a=commit;h=f47f8d2acdca96d2bcd970e54a... Author: Nikolay Sivov <nsivov(a)codeweavers.com> Date: Fri Nov 27 21:51:59 2015 +0300 usp10: Remove unused helper (Clang). Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)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);
participants (1)
-
Alexandre Julliard