From cd826c8526ffeb001db47f8894f69045d223b4fb Mon Sep 17 00:00:00 2001 From: Robin Watts Date: Fri, 8 Jul 2016 23:23:31 +0100 Subject: Avoid warnings in non-Memento builds. --- include/mupdf/fitz/context.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'include') diff --git a/include/mupdf/fitz/context.h b/include/mupdf/fitz/context.h index ee8ba84e..5f047721 100644 --- a/include/mupdf/fitz/context.h +++ b/include/mupdf/fitz/context.h @@ -607,7 +607,7 @@ fz_keep_imp(fz_context *ctx, void *p, int *refs) { if (p) { - Memento_takeRef(p); + (void)Memento_takeRef(p); fz_lock(ctx, FZ_LOCK_ALLOC); if (*refs > 0) ++*refs; @@ -621,7 +621,7 @@ fz_keep_imp8(fz_context *ctx, void *p, int8_t *refs) { if (p) { - Memento_takeRef(p); + (void)Memento_takeRef(p); fz_lock(ctx, FZ_LOCK_ALLOC); if (*refs > 0) ++*refs; @@ -635,7 +635,7 @@ fz_keep_imp16(fz_context *ctx, void *p, int16_t *refs) { if (p) { - Memento_takeRef(p); + (void)Memento_takeRef(p); fz_lock(ctx, FZ_LOCK_ALLOC); if (*refs > 0) ++*refs; @@ -650,7 +650,7 @@ fz_drop_imp(fz_context *ctx, void *p, int *refs) if (p) { int drop; - Memento_dropRef(p); + (void)Memento_dropRef(p); fz_lock(ctx, FZ_LOCK_ALLOC); if (*refs > 0) drop = --*refs == 0; @@ -668,7 +668,7 @@ fz_drop_imp8(fz_context *ctx, void *p, int8_t *refs) if (p) { int drop; - Memento_dropRef(p); + (void)Memento_dropRef(p); fz_lock(ctx, FZ_LOCK_ALLOC); if (*refs > 0) drop = --*refs == 0; @@ -686,7 +686,7 @@ fz_drop_imp16(fz_context *ctx, void *p, int16_t *refs) if (p) { int drop; - Memento_dropRef(p); + (void)Memento_dropRef(p); fz_lock(ctx, FZ_LOCK_ALLOC); if (*refs > 0) drop = --*refs == 0; -- cgit v1.2.3