From c9977f38770ff3b24795fe2e78cd52a29284b790 Mon Sep 17 00:00:00 2001 From: Roman Lebedev Date: Fri, 16 Mar 2018 18:01:07 +0000 Subject: [PATCH] [docs] ReleaseNotes: document -Wextra-semi changes. I should have done it in rL327558 / D43162, but forgot.. I'm not 100% sure about the text, but i don't think it warrants a whole new differential revision. llvm-svn: 327725 --- clang/docs/ReleaseNotes.rst | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/clang/docs/ReleaseNotes.rst b/clang/docs/ReleaseNotes.rst index 4d7a8e0..11de272 100644 --- a/clang/docs/ReleaseNotes.rst +++ b/clang/docs/ReleaseNotes.rst @@ -51,7 +51,13 @@ Major New Features Improvements to Clang's diagnostics ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -- ... +- ``-Wc++98-compat-extra-semi`` is a new flag, which was previously inseparable + from ``-Wc++98-compat-pedantic``. The latter still controls the new flag. + +- ``-Wextra-semi`` now also controls ``-Wc++98-compat-extra-semi``. + Please do note that if you pass ``-Wno-c++98-compat-pedantic``, it implies + ``-Wno-c++98-compat-extra-semi``, so if you want that diagnostic, you need + to explicitly re-enable it (e.g. by appending ``-Wextra-semi``). Non-comprehensive list of changes in this release ------------------------------------------------- -- 2.7.4