tsoding / eepers

Simple Turn-based Game
MIT License
344 stars 19 forks source link

fix warning `renamed predefined unit is an obsolescent feature` #23

Closed LainLayer closed 6 months ago

LainLayer commented 7 months ago

eepers.adb:2:06: warning: renamed predefined unit is an obsolescent feature (RM J.1) [-gnatwj] absolutely no idea what this means, but doing this fixes it.

JeremyGrosser commented 7 months ago

All of the language defined packages were moved under Ada, System, and Interfaces in Ada 95. There’s some discussion in the Ada 95 Rationale

GNAT still supports these obsolete names, but other compilers may not.

rexim commented 6 months ago

LGTM! Thank you!