xunused icon indicating copy to clipboard operation
xunused copied to clipboard

xunused is a tool to find unused C/C++ functions and methods across source files in the whole project.

Results 6 xunused issues
Sort by recently updated
recently updated
newest added

Sometimes function or method is used just once and could be embedded into caller.

Thanks for the amazing tool! I've been looking for something like this for a long time. I've been running this on the Lustre filesystem and I've been able to find...

Hi there, I'm trying to run xunused excluding all files which end with `_test.cpp`. I've tried a number of different regex forms but I can't seem to get any to...

Added matchers for user-defined operators new and delete. Before this fix, custom class operators `Foo::operator new()` and `Foo::operator delete()` were reported as unused for dynamically allocated `Foo` objects. This fix...

`FunctionDeclMatchHandler::finalize()` maps certain functions to `DefInfo` objects stored in the `AllDecls` map. Two loops implement this mapping: * The first loop adds functions that are defined but unused in TU....

In C you often see stuff like this: ```c __attribute__((__cleanup__(manager_freep)) Manager *m = NULL; ``` In the libclang API this is represented as `CleanupAttr` with has a reference to a...