Clang by example: detecting unused functions
Clang by example: detecting unused functions:
Introduction This article provides description of a tool that scans a set of source files looking for two types of functions declared with external linkage: 1. Those that are defined, but completely unused. 2. Those that are used only inside same translation unit they are defined in. via Pocket