remove unnecessary 'const'

wouldn't it be nice if there was a single C++ standard that all compilers adhered to?
develop
Kelly Kinkade 2022-11-20 10:21:32 -06:00
parent 2453b34194
commit 2bc2dd8f5b
1 changed files with 1 additions and 1 deletions

@ -9,7 +9,7 @@
using namespace DFHack;
using namespace df::enums;
const enum dwarf_state : const int {
enum dwarf_state : int {
// Ready for a new task
IDLE=0,