summaryrefslogtreecommitdiffstats
path: root/include/clang/Sema/CodeCompleteConsumer.h
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2011-02-15 20:33:25 +0000
committerDouglas Gregor <dgregor@apple.com>2011-02-15 20:33:25 +0000
commit68e3c2eef52701a178fbcc2bb424f31dd4b36931 (patch)
treeaf42c3543fc822a045812910cbe5c40ab69447ec /include/clang/Sema/CodeCompleteConsumer.h
parentdb27d82dee4b66d1d3571bb3a308484ba4bb8294 (diff)
When code-completing within a list of declaration specifiers,
separately handle the case of a local declaration-specifier list, including all types in the set of options. Fixes <rdar://problem/8790735> and <rdar://problem/8662831>. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@125594 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Sema/CodeCompleteConsumer.h')
-rw-r--r--include/clang/Sema/CodeCompleteConsumer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Sema/CodeCompleteConsumer.h b/include/clang/Sema/CodeCompleteConsumer.h
index 00e76eadaf..4f28fb2cca 100644
--- a/include/clang/Sema/CodeCompleteConsumer.h
+++ b/include/clang/Sema/CodeCompleteConsumer.h
@@ -146,7 +146,7 @@ class Sema;
class CodeCompletionContext {
public:
enum Kind {
- /// \brief An unspecified code-completion context, where the
+ /// \brief An unspecified code-completion context.
CCC_Other,
/// \brief Code completion occurred within a "top-level" completion context,
/// e.g., at namespace or global scope.