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

Commit

Permalink
Use const rather than static for Core::SUCCESS and FAIL
Browse files Browse the repository at this point in the history
  • Loading branch information
SpaceManiac committed May 10, 2020
1 parent 4010d2c commit 1b081fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions byond-extools/src/core/core.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ extern int ByondBuild;

namespace Core
{
static const char* SUCCESS = "SUCCESS";
static const char* FAIL = "FAIL";
const char* const SUCCESS = "SUCCESS";
const char* const FAIL = "FAIL";

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

Expand Down

0 comments on commit 1b081fd

Please sign in to comment.