aboutsummaryrefslogtreecommitdiff
path: root/include/clang-c/Index.h
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2010-10-11 16:52:23 +0000
committerDouglas Gregor <dgregor@apple.com>2010-10-11 16:52:23 +0000
commitb10daedb8fc4c6f70a66dbc1a6eea01684bb4e77 (patch)
treefe88a90f6d496190f6b5e22199e8481a6324a748 /include/clang-c/Index.h
parent334d47e92e9f241576fdeb7477b69a03136ba854 (diff)
Eliminate clang_setUseExternalASTGeneration() from libclang. Between
improvements to the compiler and the introduction of crash recovery, it no longer makes sense to allow this mode. Moreover, this eliminates one use of the "clang" executable from within libclang; we'd like them all to go away. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@116207 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang-c/Index.h')
-rw-r--r--include/clang-c/Index.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h
index 707c0df201..1dc4c05c02 100644
--- a/include/clang-c/Index.h
+++ b/include/clang-c/Index.h
@@ -202,18 +202,6 @@ CINDEX_LINKAGE CXIndex clang_createIndex(int excludeDeclarationsFromPCH,
CINDEX_LINKAGE void clang_disposeIndex(CXIndex index);
/**
- * \brief Request that AST's be generated externally for API calls which parse
- * source code on the fly, e.g. \see createTranslationUnitFromSourceFile.
- *
- * Note: This is for debugging purposes only, and may be removed at a later
- * date.
- *
- * \param index - The index to update.
- * \param value - The new flag value.
- */
-CINDEX_LINKAGE void clang_setUseExternalASTGeneration(CXIndex index,
- int value);
-/**
* \defgroup CINDEX_FILES File manipulation routines
*
* @{