HPL1: make StaticString constructor constexpr

This commit is contained in:
grisenti 2022-12-09 09:13:37 +01:00 committed by Eugene Sandulenko
parent 204945ad31
commit 96ed9b9f79
No known key found for this signature in database
GPG Key ID: 014D387312D34F08

View File

@ -27,7 +27,7 @@ namespace Hpl1 {
class StaticString
{
public:
StaticString(const char *str) : _str(str)
constexpr StaticString(const char *str) : _str(str)
{
}