summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Jasper <djasper@google.com>2013-12-11 14:41:33 +0000
committerDaniel Jasper <djasper@google.com>2013-12-11 14:41:33 +0000
commit87ddfddba2542a4167aade1b701f7dc8f92dac3f (patch)
tree4c4e4f74a8f24e9c1bed1a6f79f3cddd91d57ca7
parentceab8e2301ec56c662a4b59ff033e14922abbd17 (diff)
downloadclang-87ddfddba2542a4167aade1b701f7dc8f92dac3f.tar.gz
clang-87ddfddba2542a4167aade1b701f7dc8f92dac3f.tar.bz2
clang-87ddfddba2542a4167aade1b701f7dc8f92dac3f.tar.xz
Add release notes for clang-format.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/branches/release_34@197042 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--docs/ReleaseNotes.rst13
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/ReleaseNotes.rst b/docs/ReleaseNotes.rst
index 30221ddc64..033cb308d3 100644
--- a/docs/ReleaseNotes.rst
+++ b/docs/ReleaseNotes.rst
@@ -171,6 +171,19 @@ The static analyzer (which contains additional code checking beyond compiler
warnings) has improved significantly in both in the core analysis engine and
also in the kinds of issues it can find.
+Clang Format
+------------
+
+Clang now includes a new tool ``clang-format`` which can be used to
+automatically format C, C++ and Objective-C source code. ``clang-format``
+automatically chooses linebreaks and indentation and can be easily integrated
+into editors, IDEs and version control systems. It supports several pre-defined
+styles as well as precise style control using a multitude of formatting
+options. ``clang-format`` itself is just a thin wrapper around a library which
+can also be used directly from code refactoring and code translation tools.
+More information can be found on `Clang Format's
+site <http://clang.llvm.org/docs/ClangFormat.html>`_.
+
Windows Support
---------------