We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8266e3 commit f2a34ddCopy full SHA for f2a34dd
fly/logger/styler.hpp
@@ -1,5 +1,6 @@
1
#pragma once
2
3
+#include "fly/fly.hpp"
4
#include "fly/logger/detail/styler_proxy.hpp"
5
#include "fly/traits/traits.hpp"
6
#include "fly/types/numeric/literals.hpp"
@@ -127,7 +128,7 @@ inline namespace literals {
127
128
* @return The constructed Color.
129
*/
130
template <char... Literals>
- constexpr inline Color operator"" _c()
131
+ FLY_CONSTEVAL inline Color operator"" _c()
132
{
133
// Convert to std::uint8_t via numeric literal to ensure the provided color is valid.
134
const std::uint8_t validated_color = operator"" _u8<Literals...>();
0 commit comments