From 1503be75672d4e8401b18332e2cb37cbbfc37f1e Mon Sep 17 00:00:00 2001 From: "Jason S. Ninneman" Date: Sun, 25 Jun 2017 20:22:38 -0700 Subject: [PATCH] Remove duped const keywords. --- newdungeon.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/newdungeon.py b/newdungeon.py index 0575d2c..ba89670 100755 --- a/newdungeon.py +++ b/newdungeon.py @@ -96,8 +96,8 @@ typedef struct {{ extern const location_t locations[]; extern const object_description_t object_descriptions[]; -extern const const char* arbitrary_messages[]; -extern const const class_t classes[]; +extern const char* arbitrary_messages[]; +extern const class_t classes[]; extern const turn_threshold_t turn_thresholds[]; extern const obituary_t obituaries[]; extern const hint_t hints[]; -- 2.31.1