Skip to content

Maintenance release

Latest
Compare
Choose a tag to compare
@Superbelko Superbelko released this 12 Aug 17:17
· 2 commits to master since this release
f1686bc

Maintenance release that adds clang14 support, no new features added.

  • Fixed a minor bug with struct construction in some cases, e.g. when returning struct with NRVO.
Vec3 makevec() 
{
    Vec3 v = Vec(1,2,3);
    return v;  // this was instead rewritten as return Vec3(v)
}

This and a new copy constructors in D makes such code to emit an error telling about being unable to generate inout copy constructor.