Timeline for How do I locate Uncalled Functions?
Current License: CC BY-SA 3.0
4 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| Jul 2, 2016 at 18:08 | comment | added | CodesInChaos | In C this should mostly work. But there are complications like code that uses DEFINEs to switch between different implementations. In C++ that won't work reliably due to function overloading, template specialization and probably a couple of other features. | |
| Jul 23, 2012 at 12:52 | comment | added | DeadMG | He clearly specifies that he is in C++. Incremental rebuilding is extremely fast- if all you've done is comment one method in one source file, the linker can tell you very pronto. | |
| Jul 23, 2012 at 9:18 | comment | added | Davor Ždralo | It's wort to note that this will only work in compiled languages, and not interpreted ones like PHP. Also, it's impractical for any large project, as it could take you days to actually comment/uncomment all the methods, and check them. | |
| Jul 22, 2012 at 19:14 | history | answered | DeadMG | CC BY-SA 3.0 |