You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the file include/blond/fft.h presents at line 340 an issue.
A move of a local object is in place which prevents copy elision: http://www.cplusplus.com/forum/general/186411 .
To avoid performance hits, one might consider to simply return the collection.
Cheers,
D
The text was updated successfully, but these errors were encountered:
Hi,
the file include/blond/fft.h presents at line 340 an issue.
A move of a local object is in place which prevents copy elision: http://www.cplusplus.com/forum/general/186411 .
To avoid performance hits, one might consider to simply return the collection.
Cheers,
D
The text was updated successfully, but these errors were encountered: