What does the following line mean? constexpr static const std::uint8_t CLASS_ERROR = 0x02; [closed]
Closed. This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add details and clarify the problem by editing this post. Closed 6 hours ago. Improve this question namespace ABC { constexpr static const std::uint8_t CLASS_ERROR = 0x02; } constexpr itself tells that its a const expression. Why … Read more