summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans Wennborg <hans@hanshq.net>2018-08-22 00:53:19 +0000
committerHans Wennborg <hans@hanshq.net>2018-08-22 00:53:19 +0000
commitf6f4d6e0e6ee7b8730ae425ae894230ee81e4a33 (patch)
tree17fcccec3f936e53509d74c07fbb137af6bc7fb8
parent0219d8b6f9b3574c5a4ddaff4390cbb6af0e03a4 (diff)
Notify pending API removal in the release notes
Patch by Stephen Kelly. Differential Revision: https://reviews.llvm.org/D51069 git-svn-id: https://llvm.org/svn/llvm-project/cfe/branches/release_70@340375 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--docs/ReleaseNotes.rst5
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/ReleaseNotes.rst b/docs/ReleaseNotes.rst
index 06512d067e..b0917d4c12 100644
--- a/docs/ReleaseNotes.rst
+++ b/docs/ReleaseNotes.rst
@@ -265,7 +265,10 @@ These are major API changes that have happened since the 6.0.0 release of
Clang. If upgrading an external codebase that uses Clang as a library,
this section should help get you past the largest hurdles of upgrading.
-- ...
+- The methods ``getLocStart``, ``getStartLoc`` and ``getLocEnd`` in the AST
+ classes are deprecated. New APIs ``getBeginLoc`` and ``getEndLoc`` should
+ be used instead. While the old methods remain in this release, they will
+ not be present in the next release of Clang.
AST Matchers
------------