aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Zelenko <eugene.zelenko@gmail.com>2018-07-13 22:53:05 +0000
committerEugene Zelenko <eugene.zelenko@gmail.com>2018-07-13 22:53:05 +0000
commitec03ed5c66ee20beba729e5312d7957324284dc6 (patch)
tree93651ab1d9459a9120f9236e58fc5e53b24ca455
parentcb582cc8c09bb8084faf37532d6692054e94d5f2 (diff)
[Documentation] Add missing description for bugprone-exception-escape in Release Notes.
git-svn-id: https://llvm.org/svn/llvm-project/clang-tools-extra/trunk@337069 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--docs/ReleaseNotes.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/ReleaseNotes.rst b/docs/ReleaseNotes.rst
index b425d654..ef2f0604 100644
--- a/docs/ReleaseNotes.rst
+++ b/docs/ReleaseNotes.rst
@@ -82,6 +82,9 @@ Improvements to clang-tidy
- New :doc:`bugprone-exception-escape
<clang-tidy/checks/bugprone-exception-escape>` check
+ Finds functions which may throw an exception directly or indirectly, but they
+ should not.
+
- New :doc:`bugprone-parent-virtual-call
<clang-tidy/checks/bugprone-parent-virtual-call>` check.