From 12de677fcc780de6a4edd90e70c58459c44d9918 Mon Sep 17 00:00:00 2001 From: Guillaume Munch Date: Tue, 1 Sep 2015 17:47:01 +0100 Subject: [PATCH] Support for (std|boost)::make_shared --- src/support/shared_ptr.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/support/shared_ptr.h b/src/support/shared_ptr.h index d011597a39..bb613de563 100644 --- a/src/support/shared_ptr.h +++ b/src/support/shared_ptr.h @@ -20,6 +20,7 @@ #else #include +#include #define LYX_SHAREDPTR_NS boost #endif @@ -27,6 +28,7 @@ namespace lyx { using LYX_SHAREDPTR_NS::shared_ptr; + using LYX_SHAREDPTR_NS::make_shared; using LYX_SHAREDPTR_NS::const_pointer_cast; }