summaryrefslogtreecommitdiffstats
path: root/include/clang-c
diff options
context:
space:
mode:
authorNemanja Ivanovic <nemanja.i.ibm@gmail.com>2016-04-15 18:04:13 +0000
committerNemanja Ivanovic <nemanja.i.ibm@gmail.com>2016-04-15 18:04:13 +0000
commitc74bb5e707bc42a010ab107fbe3515c2f39385c1 (patch)
treebe39c40a7b2b44c4d9c28f7b6fc1868befaf9996 /include/clang-c
parent2785c796d94f1b17157cf4fa9f6f7eda10efc9f6 (diff)
Revert 266186 as it breaks anything that includes type_traits on some platforms
Since this patch provided support for the __float128 type but disabled it on all platforms by default, some platforms can't compile type_traits with -std=gnu++11 since there is a specialization with __float128. This reverts the patch until D19125 is approved (i.e. we know which platforms need this support enabled). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@266460 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang-c')
-rw-r--r--include/clang-c/Index.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h
index e9f93364af..9c9bc7a998 100644
--- a/include/clang-c/Index.h
+++ b/include/clang-c/Index.h
@@ -2929,7 +2929,6 @@ enum CXTypeKind {
CXType_ObjCId = 27,
CXType_ObjCClass = 28,
CXType_ObjCSel = 29,
- CXType_Float128 = 30,
CXType_FirstBuiltin = CXType_Void,
CXType_LastBuiltin = CXType_ObjCSel,