asan/tsan: fix comment

llvm-svn: 172064
This commit is contained in:
Dmitry Vyukov 2013-01-10 13:06:35 +00:00
parent 1199dc0327
commit 22c53df947
1 changed files with 3 additions and 3 deletions

View File

@ -660,9 +660,9 @@ class SizeClassAllocator32 {
State *state_;
};
// Objects of this type should be used as local caches for SizeClassAllocator64.
// Since the typical use of this class is to have one object per thread in TLS,
// is has to be POD.
// Objects of this type should be used as local caches for SizeClassAllocator64
// or SizeClassAllocator32. Since the typical use of this class is to have one
// object per thread in TLS, is has to be POD.
template<class SizeClassAllocator>
struct SizeClassAllocatorLocalCache {
typedef SizeClassAllocator Allocator;