mirror of
https://github.com/boostorg/smart_ptr.git
synced 2025-10-18 10:25:25 +02:00
Fully qualified detail:: to work around a subtle VC 7.1 problem.
[SVN r32994]
This commit is contained in:
@@ -141,7 +141,7 @@ public:
|
||||
pn.swap(other.pn);
|
||||
}
|
||||
|
||||
void _internal_assign(T * px2, detail::shared_count const & pn2)
|
||||
void _internal_assign(T * px2, boost::detail::shared_count const & pn2)
|
||||
{
|
||||
px = px2;
|
||||
pn = pn2;
|
||||
@@ -164,8 +164,8 @@ private:
|
||||
|
||||
#endif
|
||||
|
||||
T * px; // contained pointer
|
||||
detail::weak_count pn; // reference counter
|
||||
T * px; // contained pointer
|
||||
boost::detail::weak_count pn; // reference counter
|
||||
|
||||
}; // weak_ptr
|
||||
|
||||
|
Reference in New Issue
Block a user