Merge fix from trunk; Fixes #7819

[SVN r82280]
This commit is contained in:
Marshall Clow
2012-12-30 01:07:13 +00:00
parent 352cb183fe
commit 62cce2aaaf

View File

@ -677,7 +677,7 @@ namespace boost {
vtable_type* get_vtable() const {
return reinterpret_cast<vtable_type*>(
reinterpret_cast<std::size_t>(vtable) & ~static_cast<size_t>(0x01));
reinterpret_cast<std::size_t>(vtable) & ~static_cast<std::size_t>(0x01));
}
struct clear_type {};