diff options
author | Chris Lattner <sabre@nondot.org> | 2009-12-15 07:40:44 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-12-15 07:40:44 +0000 |
commit | dc2e570411bb1b1345a6b9840050aca823835a81 (patch) | |
tree | 07e7836d83840fa15fbbae6af99b38a9e9b912a2 /include/llvm/ADT | |
parent | 729a8acc9f2f4bd0751da20d0e85a8c02bdc5375 (diff) | |
download | external_llvm-dc2e570411bb1b1345a6b9840050aca823835a81.zip external_llvm-dc2e570411bb1b1345a6b9840050aca823835a81.tar.gz external_llvm-dc2e570411bb1b1345a6b9840050aca823835a81.tar.bz2 |
improve isPodLike to know that all non-class types are pod.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91425 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT')
-rw-r--r-- | include/llvm/ADT/SmallVector.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/llvm/ADT/SmallVector.h b/include/llvm/ADT/SmallVector.h index f3b4533..46d6b67 100644 --- a/include/llvm/ADT/SmallVector.h +++ b/include/llvm/ADT/SmallVector.h @@ -46,6 +46,13 @@ namespace std { namespace llvm { +/// SmallVectorBase - This is all the non-templated stuff common to all +/// SmallVectors. +class SmallVectorBase { + +}; + + /// SmallVectorImpl - This class consists of common code factored out of the /// SmallVector class to reduce code duplication based on the SmallVector 'N' /// template parameter. |