Skip to content

Files

Latest commit

 Cannot retrieve latest commit at this time.

History

History

chapter_06

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

6. Exercise: Use the Tools: Static Analysis

cppcheck

sudo apt-get install cppcheck

cppcheck main.cc

use cmake with cppcheck

mkdir build
cd build
cmake ..
make