1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01: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() { void reset() {
if (hasVal) { if (hasVal) {
(**this).~T(); (*this)->~T();
hasVal = false; hasVal = false;
} }
} }