Since 4/2/2012 5:15:04 AM, prosen has written 2 articles and participated in 0 conversations. prosen signature: prosen
prosen's articles:
Items(2) /1
efficiency of new/delete2498 (6/15/2005 10:48:42 PM) comp.lang.c++.moderated I've been profiling some time-critical code and have generally made good progress, but I'm not sure what to do about this: In my test case, I am spending about 25% of the entire run of the program on malloc ... Paul
const data member and operator=692 (5/10/2005 9:20:38 PM) comp.lang.c++.moderated [Excuse me if this is obvious, but I haven't been able find the answer] I have data in a class that should be const, like this: class A { private: const MyData data_; public: A(const MyData& d) : data_(d) {... Paul