c++ Programming Glossary: pds
The cost of passing by shared_ptr http://stackoverflow.com/questions/2502394/the-cost-of-passing-by-shared-ptr class Dataset ... void f shared_ptr Dataset const pds ... void g shared_ptr Dataset const pds ... ... While passing.. Dataset const pds ... void g shared_ptr Dataset const pds ... ... While passing a dataset object around via shared_ptr.. Dataset ds ... and replacing the calls shared_ptr Dataset pds new Dataset ... f pds with f pds in places where I know for..
|