Added missing 'std::'; Refs #7819

[SVN r82273]
This commit is contained in:
Marshall Clow
2012-12-29 16:36:12 +00:00
parent 74a61f0252
commit 95a1956397

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 {};