aboutsummaryrefslogtreecommitdiff
path: root/include/clang-c
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2012-10-18 00:17:05 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2012-10-18 00:17:05 +0000
commit8d7a24e94b58676e57fd3f47353cbdbc59917d81 (patch)
tree8292f3559d0fcbb646eae94042ed784e3d09e143 /include/clang-c
parentff9c9e1d71ec8f994c08d185f5acc01c0a685d0d (diff)
[libclang] Invoke a ppIncludedFile callback when indexing implicit module imports.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@166161 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang-c')
-rw-r--r--include/clang-c/Index.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h
index b122faa443..650e633940 100644
--- a/include/clang-c/Index.h
+++ b/include/clang-c/Index.h
@@ -4985,6 +4985,11 @@ typedef struct {
CXFile file;
int isImport;
int isAngled;
+ /**
+ * \brief Non-zero if the directive was automatically turned into a module
+ * import.
+ */
+ int isModuleImport;
} CXIdxIncludedFileInfo;
/**