├── .clang-format ├── .clang-tidy ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── README.md ├── cmake ├── clang_tools.cmake ├── cppcheck.cmake └── unit_test.cmake ├── docs ├── Doxyfile └── images │ ├── clang_static_analyzer_1.png │ ├── clang_static_analyzer_2.png │ ├── coverage_report.png │ └── doxygen.png ├── include ├── catch2 │ └── catch.hpp └── fact │ └── factorial.h ├── src ├── danger │ └── bad_examples.cpp ├── fact │ └── factorial.cpp └── main.cpp └── test ├── danger └── test_bad_examples.cpp ├── fact └── test_factorial.cpp └── test_main.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/clang-blueprint/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/clang-blueprint/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/clang-blueprint/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/clang-blueprint/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/clang-blueprint/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/clang-blueprint/HEAD/README.md -------------------------------------------------------------------------------- /cmake/clang_tools.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/clang-blueprint/HEAD/cmake/clang_tools.cmake -------------------------------------------------------------------------------- /cmake/cppcheck.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/clang-blueprint/HEAD/cmake/cppcheck.cmake -------------------------------------------------------------------------------- /cmake/unit_test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/clang-blueprint/HEAD/cmake/unit_test.cmake -------------------------------------------------------------------------------- /docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/clang-blueprint/HEAD/docs/Doxyfile -------------------------------------------------------------------------------- /docs/images/clang_static_analyzer_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/clang-blueprint/HEAD/docs/images/clang_static_analyzer_1.png -------------------------------------------------------------------------------- /docs/images/clang_static_analyzer_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/clang-blueprint/HEAD/docs/images/clang_static_analyzer_2.png -------------------------------------------------------------------------------- /docs/images/coverage_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/clang-blueprint/HEAD/docs/images/coverage_report.png -------------------------------------------------------------------------------- /docs/images/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/clang-blueprint/HEAD/docs/images/doxygen.png -------------------------------------------------------------------------------- /include/catch2/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/clang-blueprint/HEAD/include/catch2/catch.hpp -------------------------------------------------------------------------------- /include/fact/factorial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/clang-blueprint/HEAD/include/fact/factorial.h -------------------------------------------------------------------------------- /src/danger/bad_examples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/clang-blueprint/HEAD/src/danger/bad_examples.cpp -------------------------------------------------------------------------------- /src/fact/factorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/clang-blueprint/HEAD/src/fact/factorial.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/clang-blueprint/HEAD/src/main.cpp -------------------------------------------------------------------------------- /test/danger/test_bad_examples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/clang-blueprint/HEAD/test/danger/test_bad_examples.cpp -------------------------------------------------------------------------------- /test/fact/test_factorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/clang-blueprint/HEAD/test/fact/test_factorial.cpp -------------------------------------------------------------------------------- /test/test_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnthagen/clang-blueprint/HEAD/test/test_main.cpp --------------------------------------------------------------------------------