class DestructorDeleted final {
private:
~DestructorDeleted() = delete;
};
on android & win7 builds returns true.
on others, returns false.
This means we need to keep WTF::IsTriviallyDestructible for now as it is consistent across all builds.
From C++14 on wards I think this should be true, not sure why things are different now tho.
Comment 1 by yutak@chromium.org
, Nov 9 2017