summaryrefslogtreecommitdiff
path: root/clang/test/CodeCompletion/keywords.cpp
AgeCommit message (Collapse)Author
2019-05-29[CodeComplete] Add semicolon when completing patterns for 'static_assert' ↵Ilya Biryukov
and 'typedef This is a trivial follow-up to r360042, which added semicolons to other pattern completions, so sending without review. llvm-svn: 361974
2017-02-13[CodeCompletion] Code complete the missing C++11 keywordsAlex Lorenz
This commit adds context sensitive code completion support for the C++11 keywords that currently don't have completion results. The following keywords are supported by this patch: alignas constexpr static_assert noexcept (as a function/method qualifier) thread_local The following special identifiers are also supported: final (as a method qualifier or class qualifier) override rdar://29219185 Differential Revision: https://reviews.llvm.org/D28286 llvm-svn: 295001