From cc7eb56f517c3f9a1a95a7b5cf971b3026d38f38 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Fri, 7 Jul 2017 14:14:54 +0300 Subject: [PATCH] Fixed broken link in techniques.adoc --- doc/smart_ptr/techniques.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/smart_ptr/techniques.adoc b/doc/smart_ptr/techniques.adoc index f6da9f6..36155d4 100644 --- a/doc/smart_ptr/techniques.adoc +++ b/doc/smart_ptr/techniques.adoc @@ -251,7 +251,7 @@ Note, however, that `shared_ptr` copies created from `pw` will not "register" in they will share the single reference created in `make_shared_from_COM`. Weak pointers created from `pw` will be invalidated when the last `shared_ptr` is destroyed, regardless of whether the COM object itself is still alive. -As link:../../libs/bind/mem_fn.html#Q3[explained] in the `mem_fn` documentation, you need to `#define BOOST_MEM_FN_ENABLE_STDCALL` first. +As link:../../../../libs/bind/mem_fn.html#Q3[explained] in the `mem_fn` documentation, you need to `#define BOOST_MEM_FN_ENABLE_STDCALL` first. [#techniques_intrusive] ## Using a shared_ptr to hold a pointer to an object with an embedded reference count