Skip to content
This repository was archived by the owner on Apr 10, 2021. It is now read-only.

Commit 1b081fd

Browse files
committed
Use const rather than static for Core::SUCCESS and FAIL
1 parent 4010d2c commit 1b081fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

byond-extools/src/core/core.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ extern int ByondBuild;
3131

3232
namespace Core
3333
{
34-
static const char* SUCCESS = "SUCCESS";
35-
static const char* FAIL = "FAIL";
34+
const char* const SUCCESS = "SUCCESS";
35+
const char* const FAIL = "FAIL";
3636

3737
//not exactly a byond structure so it's here for now
3838

0 commit comments

Comments
 (0)