diff options
| author | Joao Matos <ripzonetriton@gmail.com> | 2012-08-31 18:45:21 +0000 |
|---|---|---|
| committer | Joao Matos <ripzonetriton@gmail.com> | 2012-08-31 18:45:21 +0000 |
| commit | dc86f94f623b285b61192cf1a1ca8daa87d28422 (patch) | |
| tree | a8ecafd8615742d6ef208e6e1666162f0fd94f61 /clang/include/clang-c | |
| parent | d65f1c8d6ebdd070db205f958d647d88b93fcf5b (diff) | |
| download | bcm5719-llvm-dc86f94f623b285b61192cf1a1ca8daa87d28422.tar.gz bcm5719-llvm-dc86f94f623b285b61192cf1a1ca8daa87d28422.zip | |
Improved MSVC __interface support by adding first class support for it, instead of aliasing to "struct" which had some incorrect behaviour. Patch by David Robins.
llvm-svn: 163013
Diffstat (limited to 'clang/include/clang-c')
| -rw-r--r-- | clang/include/clang-c/Index.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/clang/include/clang-c/Index.h b/clang/include/clang-c/Index.h index 1347f6c1671..9ed0570cf6a 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -4962,13 +4962,14 @@ typedef enum { CXIdxEntity_CXXStaticVariable = 19, CXIdxEntity_CXXStaticMethod = 20, CXIdxEntity_CXXInstanceMethod = 21, - CXIdxEntity_CXXConstructor = 22, - CXIdxEntity_CXXDestructor = 23, - CXIdxEntity_CXXConversionFunction = 24, - CXIdxEntity_CXXTypeAlias = 25 - -} CXIdxEntityKind; - + CXIdxEntity_CXXConstructor = 22,
+ CXIdxEntity_CXXDestructor = 23,
+ CXIdxEntity_CXXConversionFunction = 24,
+ CXIdxEntity_CXXTypeAlias = 25,
+ CXIdxEntity_CXXInterface = 26
+
+} CXIdxEntityKind;
+
typedef enum { CXIdxEntityLang_None = 0, CXIdxEntityLang_C = 1, |

