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 51e7951e24
commit f4652c32e8
1 changed files with 1 additions and 1 deletions

View File

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