Re: Latest code can be compiled with visual studio 2010?
Posted by dxli on Sep 07, 2015; 2:12pm
URL: https://forum.librecad.org/Latest-code-can-be-compiled-with-visual-studio-2010-tp5711707p5712168.html
We can replace all vla
Int va[length];
To
Std::unique_ptr<int> pva(new int[length]);