August 2014
Beginner to intermediate
314 pages
7h 57m
English
In this section, we will present clang-tidy as an example of a LibTooling tool and explain how to use it. All other Clang tools will have a similar look and feel, thereby allowing you to comfortably explore them.
The clang-tidy tool is a linter, based on Clang. In general, a linter is a tool that analyzes code and denounces parts that do not follow best practices. It can check for specific characteristics, such as the following:
In the specific case of clang-tidy, the tool is able to run two types of checkers: those from the original Clang ...
Read now
Unlock full access