diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-07-25 17:39:21 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-07-25 17:39:21 +0000 |
commit | 45ba9a1b31110568d0d362c8d31c6133cf9011b7 (patch) | |
tree | 0df1e25e18cc9e1ca373e329bd1cc93058d8829a /tools/c-index-test/c-index-test.c | |
parent | df22c2cc7703c7df04eadd2e6e59c61f545a5741 (diff) |
Start removing the use of smart pointers from the Parse/Sema
interaction, by effectively defaulting to
DISABLE_SMART_POINTERS. We're embracing the model where all AST nodes
are ASTContext-allocated and live as long as the ASTContext lives.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@109374 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/c-index-test/c-index-test.c')
-rw-r--r-- | tools/c-index-test/c-index-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/c-index-test/c-index-test.c b/tools/c-index-test/c-index-test.c index db8ce18c73..fc24bac7d0 100644 --- a/tools/c-index-test/c-index-test.c +++ b/tools/c-index-test/c-index-test.c @@ -28,7 +28,7 @@ char *basename(const char* path) extern char *basename(const char *); #endif -/// \brief Return the default parsing options. +/** \brief Return the default parsing options. */ static unsigned getDefaultParsingOptions() { unsigned options = CXTranslationUnit_DetailedPreprocessingRecord; |