Remove needless if.

resolves #516
This commit is contained in:
Christopher Dunn 2016-08-21 16:30:05 -05:00
parent 7d8eddb98c
commit f78f685bab

View File

@ -502,8 +502,7 @@ Value::~Value() {
JSON_ASSERT_UNREACHABLE;
}
if (comments_)
delete[] comments_;
delete[] comments_;
value_.uint_ = 0;
}