J
Jonathan Turkanis
Why? 'pf = pd' expression will result into the use of compiler-
generated assignment operator and a construction of a temporary
on the right side, no? It should be equivalent to
{ Vector<float> temp(pd); pf = temp; }
No special assignment operator is needed here.
Correct me if I am wrong.
You're not -- I was .
Jonathan