SimonN / LixD

Lix: Lemmings-like game with puzzles, editor, multiplayer
https://www.lixgame.com
132 stars 17 forks source link

Warnings from DMD 2.103.0: Deprecation: alias this #458

Closed SimonN closed 1 year ago

SimonN commented 1 year ago

Lix 0.10.7

Compile Lix with DMD 2.103.0 or newer. The build succeeds, but we get several warnings of this type:

[...]
src/lix/job.d(87,13): Deprecation: alias this for classes/interfaces is deprecated
src/graphic/camera/map.d(88,5): Deprecation: alias this for classes/interfaces is deprecated
src/game/panel/base.d(33,5): Deprecation: alias this for classes/interfaces is deprecated

Rewrite all affected classes to not use alias this. We can either use the code autogeneration from DMD 2.103.0's release notes or name the alias-this'd objects explicitly at every call site.

SimonN commented 1 year ago

I've started to work on this. There will be lots of small changes across many files.

SimonN commented 1 year ago

I've fixed all warnings and removed all alias this in classes. I'll take some more days to test it. If it's all good, I'll release the fix this weekend.