]> granicus.if.org Git - clang/commitdiff
Token is POD-like.
authorBenjamin Kramer <benny.kra@googlemail.com>
Tue, 8 Jun 2010 11:23:26 +0000 (11:23 +0000)
committerBenjamin Kramer <benny.kra@googlemail.com>
Tue, 8 Jun 2010 11:23:26 +0000 (11:23 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@105604 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Lex/Token.h

index b5dde9a700e810f37a5bd758d1044d6fe8244048..4a7636b7d269886fd0af622c2b85477f011545ca 100644 (file)
@@ -254,4 +254,9 @@ struct PPConditionalInfo {
 
 }  // end namespace clang
 
+namespace llvm {
+  template <>
+  struct isPodLike<clang::Token> { static const bool value = true; };
+}  // end namespace llvm
+
 #endif