1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

Revert r175626, "ADT/Optional.h: Appease msvc."

Sorry, I didn't cover +Asserts, by accident. :(

llvm-svn: 175633
This commit is contained in:
NAKAMURA Takumi 2013-02-20 15:52:44 +00:00
parent 93b2fc9f50
commit 70d86d9cce

View File

@ -70,7 +70,7 @@ public:
void reset() {
if (hasVal) {
(**this).~T();
(*this)->~T();
hasVal = false;
}
}