richardwilkes / unison

A unified graphical user experience toolkit for Go desktop applications
Mozilla Public License 2.0
202 stars 10 forks source link

Fix failing builds on 32-bit platforms which are sensitive to array sizes >= 2GB #47

Closed JamesDunne closed 10 months ago

JamesDunne commented 10 months ago

Should resolve issue #46

richardwilkes commented 10 months ago

I just realized that this is something I've been meaning to replace with unsafe.Slice() ever since Go 1.17 was released with it. Just never got around to it. Would you mind changing this PR to do that instead?

JamesDunne commented 10 months ago

No problem. Wasn't aware of that.