- removed pointless constexpr declaration on numeric constants.

This commit is contained in:
Christoph Oelckers 2020-06-12 16:49:35 +02:00
parent 3b7f494a88
commit 4f0e3adfbb
5 changed files with 10 additions and 10 deletions

View file

@ -29,7 +29,7 @@ void Dictionary::Serialize(FSerializer &arc)
{
Super::Serialize(arc);
constexpr char key[] { "dictionary" };
static const char key[] = "dictionary";
if (arc.isWriting())
{