mirror of https://github.com/mosra/magnum.git
Browse Source
There are more cases that should be fixed, but this is the most
problematic one, as this might look completely innocent:
Vector2 a, b;
float* c = (a + b).data();
Unlike this, which looks suspicious:
Vector2& c = a + b;
pull/34/head
2 changed files with 28 additions and 4 deletions
Loading…
Reference in new issue