From 39c9bbd81961f08dacac3b1d95d9f20db0dd54fb Mon Sep 17 00:00:00 2001 From: RealTimeChris <40668522+RealTimeChris@users.noreply.github.com> Date: Wed, 3 Dec 2025 14:28:47 -0500 Subject: [PATCH] Replacing the const uint32_t color values with static constexpr uint32_t. --- include/dpp/colors.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/dpp/colors.h b/include/dpp/colors.h index 7a2c90b957..bfc0688f5b 100644 --- a/include/dpp/colors.h +++ b/include/dpp/colors.h @@ -31,7 +31,7 @@ namespace dpp { * @brief predefined color constants. */ namespace colors { - const uint32_t + static constexpr uint32_t white = 0xFFFFFF, discord_white = 0xFFFFFE, light_gray = 0xC0C0C0,