forked from boostorg/smart_ptr
Add missing semicolon.
[SVN r81238]
This commit is contained in:
@ -49,7 +49,7 @@ namespace boost {
|
|||||||
p1 = reinterpret_cast<T1*>(p2);
|
p1 = reinterpret_cast<T1*>(p2);
|
||||||
d2 = get_deleter<detail::array_deleter<T2> >(s1);
|
d2 = get_deleter<detail::array_deleter<T2> >(s1);
|
||||||
d2->construct(p2, n1, std::forward<Args>(args)...);
|
d2->construct(p2, n1, std::forward<Args>(args)...);
|
||||||
return shared_ptr<T>(s1, p1)
|
return shared_ptr<T>(s1, p1);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user