T O P I C R E V I E W |
Dorian |
Posted - Jun 27 2017 : 04:34:37 AM Hi,
Is there a way to find all places where class destructor is called? In particular: destructors called by operator 'delete'. |
3 L A T E S T R E P L I E S (Newest First) |
feline |
Posted - Jun 28 2017 : 06:45:13 AM With a core dump, can't you get a stack trace, to give you a sense of what was happening, which will help you to narrow down your search area? |
Dorian |
Posted - Jun 28 2017 : 02:25:04 AM I was looking for entire class case. This would be nice feature, especially if you're working on core dumps. Thanks for "find inside find" tip - I didn't know that. Dorian |
feline |
Posted - Jun 27 2017 : 09:20:33 AM Not currently no. Are you trying to do this for a given instance, or for the entire class?
If you are interested in a specific instance, you could run Find References on the instance, and then do a find inside the Find References Results list for "delete". |