From 1532d2078a939eecdf8a26e468637e6bab317d9a Mon Sep 17 00:00:00 2001 From: AJR Date: Sun, 13 Jan 2019 12:00:14 -0500 Subject: [PATCH] hpi_dsk.cpp: Resolve unused variable warnings (nw) --- src/lib/formats/hpi_dsk.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/formats/hpi_dsk.cpp b/src/lib/formats/hpi_dsk.cpp index 63d5057de57..50d2653280d 100644 --- a/src/lib/formats/hpi_dsk.cpp +++ b/src/lib/formats/hpi_dsk.cpp @@ -72,6 +72,8 @@ constexpr unsigned HPI_RED_IMAGE_SIZE = HPI_RED_TRACKS * HPI_HEADS * HPI_SECTORS hpi_format::hpi_format() { + (void)HPI_IMAGE_SIZE; + (void)HPI_RED_IMAGE_SIZE; } int hpi_format::identify(io_generic *io, uint32_t form_factor)