From b9517df566178964c1ceec79b3b75fcd40b09136 Mon Sep 17 00:00:00 2001 From: levlam Date: Sun, 21 Jan 2018 17:23:52 +0300 Subject: [PATCH] Add -verbose option to clang-format. GitOrigin-RevId: 641a593c8fc4ebf5fc5e2b513d9dd5925856e869 --- format.ps1 | 2 +- format.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/format.ps1 b/format.ps1 index 0509d2640..2de1f6578 100644 --- a/format.ps1 +++ b/format.ps1 @@ -1,4 +1,4 @@ ./src.ps1 | ForEach-Object { echo $_ - clang-format -style=file -i $_ + clang-format -verbose -style=file -i $_ } \ No newline at end of file diff --git a/format.sh b/format.sh index f361ffac3..6788af57a 100755 --- a/format.sh +++ b/format.sh @@ -1,2 +1,2 @@ #!/bin/sh -./src.sh | grep -v CxCli.h | xargs -n 1 clang-format -style=file -i +./src.sh | grep -v CxCli.h | xargs -n 1 clang-format -verbose -style=file -i