From: Benjamin Kramer Date: Thu, 25 Nov 2010 17:32:32 +0000 (+0000) Subject: OpaquePtrs are POD-like. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f564289d3b117f2d268ca34e1e3b7d98857e1978;p=clang OpaquePtrs are POD-like. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@120148 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Sema/Ownership.h b/include/clang/Sema/Ownership.h index 7739f3a5d2..eac810a43e 100644 --- a/include/clang/Sema/Ownership.h +++ b/include/clang/Sema/Ownership.h @@ -106,6 +106,9 @@ namespace llvm { } enum { NumLowBitsAvailable = 0 }; }; + + template + struct isPodLike > { static const bool value = true; }; }