summaryrefslogtreecommitdiffstats
path: root/include/clang/Basic/TypeTraits.h
diff options
context:
space:
mode:
authorSean Hunt <scshunt@csclub.uwaterloo.ca>2011-05-13 00:31:07 +0000
committerSean Hunt <scshunt@csclub.uwaterloo.ca>2011-05-13 00:31:07 +0000
commitfeb375d31b7e9108b04a9f55b721d5e0c793a558 (patch)
tree9e7006d0d706afbe10ba82aea45855ce1e4b05c1 /include/clang/Basic/TypeTraits.h
parenteed92a18829575f316313659d6294fd2ef275838 (diff)
Implement the __is_trivially_copyable type trait
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@131270 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/TypeTraits.h')
-rw-r--r--include/clang/Basic/TypeTraits.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/clang/Basic/TypeTraits.h b/include/clang/Basic/TypeTraits.h
index b9b94a6f75..a7a45bded8 100644
--- a/include/clang/Basic/TypeTraits.h
+++ b/include/clang/Basic/TypeTraits.h
@@ -54,6 +54,7 @@ namespace clang {
UTT_IsSigned,
UTT_IsStandardLayout,
UTT_IsTrivial,
+ UTT_IsTriviallyCopyable,
UTT_IsUnion,
UTT_IsUnsigned,
UTT_IsVoid,