Skip to content

Instantly share code, notes, and snippets.

View BrukerJWD's full-sized avatar

Jonathan W BrukerJWD

  • Bruker Daltonik GmbH
View GitHub Profile
@BrukerJWD
BrukerJWD / iwyu.ps1
Created November 8, 2016 05:58
Wrapper for include-what-you-use which inspects all cpps
param(
[string]$Dir = ".",
[string]$Filter = "*.cpp"
)
$ErrorActionPreference = "Stop"
$iwyu = "\path\to\bin\include-what-you-use.exe"