From 9beb7eff58ae78810fa7f4d9830f8c46c0c0531a Mon Sep 17 00:00:00 2001 From: Noel Berry Date: Sat, 12 Feb 2022 12:30:51 -0800 Subject: [PATCH] Color::to_hex_rgb had an incorrect declaration appended to it --- include/blah/math/color.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/blah/math/color.h b/include/blah/math/color.h index 4223341..86d4dda 100644 --- a/include/blah/math/color.h +++ b/include/blah/math/color.h @@ -109,7 +109,7 @@ namespace Blah } // Returns an RGB hex string of the color - String Color::to_hex_rgb() const + String to_hex_rgb() const { static const char* hex = "0123456789ABCDEF";