mirror of
https://github.com/boostorg/gil.git
synced 2026-02-22 03:22:15 +00:00
PowerShell script used to perform the trimming:
Get-ChildItem -Recurse -Include @("*.cpp", "*.hpp") |
ForEach-Object { (Get-Content $_.FullName)
| Foreach {$_.TrimEnd()} | Set-Content $_.FullName }