From 52a23430dbfc97fe366545601aae86480f069c39 Mon Sep 17 00:00:00 2001 From: Jason Turner Date: Sun, 10 Dec 2017 15:13:03 -0700 Subject: [PATCH] Update 02-Use_the_Tools_Available.md --- 02-Use_the_Tools_Available.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/02-Use_the_Tools_Available.md b/02-Use_the_Tools_Available.md index 4270bbc..6c22ea7 100644 --- a/02-Use_the_Tools_Available.md +++ b/02-Use_the_Tools_Available.md @@ -192,6 +192,8 @@ Clang's analyzer's default options are good for the respective platform. It can Also, [CodeChecker](https://github.com/Ericsson/CodeChecker) is available as a front-end to clang's static analysis. +`clang-tidy` can be easily used with Visual Studio via the [Clang Power Tools](https://caphyon.github.io/clang-power-tools/) extension. + ### MSVC's Static Analyzer Can be enabled with the `/analyze` [command line option](http://msdn.microsoft.com/en-us/library/ms173498.aspx). For now we will stick with the default options.