From: Jason S. Ninneman Date: Mon, 26 Jun 2017 03:22:38 +0000 (-0700) Subject: Remove duped const keywords. X-Git-Tag: 1.1~108 X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=commitdiff_plain;h=1503be75672d4e8401b18332e2cb37cbbfc37f1e Remove duped const keywords. --- 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[];