Shutup strict aliasing warnings in SkTLazy

Review URL: http://codereview.appspot.com/5020042/



git-svn-id: http://skia.googlecode.com/svn/trunk@2263 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
bsalomon@google.com 2011-09-14 12:44:13 +00:00
Родитель 8966d0149b
Коммит cff323ecd8
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -52,7 +52,7 @@ public:
if (this->isValid()) {
fPtr->~T();
}
fPtr = new (fStorage) T;
fPtr = new (SkTCast<T*>(fStorage)) T;
return fPtr;
}
@ -66,7 +66,7 @@ public:
if (this->isValid()) {
*fPtr = src;
} else {
fPtr = new (fStorage) T(src);
fPtr = new (SkTCast<T*>(fStorage)) T(src);
}
return fPtr;
}