From 831e86fda60aee5a7830ba58426eab082b1d4d8f Mon Sep 17 00:00:00 2001 From: drewcassidy Date: Fri, 2 Apr 2021 18:25:37 -0700 Subject: [PATCH] Fix broken constexpr --- quicktex/s3tc/bc1/BC1Block.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quicktex/s3tc/bc1/BC1Block.h b/quicktex/s3tc/bc1/BC1Block.h index 02f02fc..7389830 100644 --- a/quicktex/s3tc/bc1/BC1Block.h +++ b/quicktex/s3tc/bc1/BC1Block.h @@ -121,6 +121,6 @@ class alignas(8) BC1Block { */ void SetSelectors(const SelectorArray& unpacked); - constexpr bool Is3Color() const { return GetColor0Raw() <= GetColor1Raw(); } + bool Is3Color() const { return GetColor0Raw() <= GetColor1Raw(); } }; } // namespace quicktex::s3tc \ No newline at end of file