We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94f2fe5 commit 8d747d7Copy full SHA for 8d747d7
Makefile.am
@@ -46,3 +46,9 @@ DISTCLEANFILES = MSVC_NMake/sigc++config.h
46
47
# Optional: auto-generate the ChangeLog file from the git log on make dist
48
include $(top_srcdir)/build/dist-changelog.am
49
+
50
+# Run clang-format over all the files, to reformat them.
51
+# (We don't use xargs here because that wouldn't let us specify different
52
+# clang-format versions via a bash alias.)
53
+format:
54
+ clang-format -i `find . -name "*.h" -or -name "*.cc"`
0 commit comments