From 5db862fb905c66b6f0b2e31102640dd686f3baa8 Mon Sep 17 00:00:00 2001 From: Scott Shambaugh Date: Tue, 9 Jul 2024 20:53:12 -0600 Subject: [PATCH] fix build warning --- src/_image_resample.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_image_resample.h b/src/_image_resample.h index 745fe9f10cd7..a6404092ea2d 100644 --- a/src/_image_resample.h +++ b/src/_image_resample.h @@ -500,7 +500,7 @@ typedef enum { // T is rgba if and only if it has an T::r field. template struct is_grayscale : std::true_type {}; -template struct is_grayscale : std::false_type {}; +template struct is_grayscale> : std::false_type {}; template