From 21e694ea5f29a450ea446e3e88bb5636193a2908 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Sun, 16 Oct 2011 17:29:02 +0000 Subject: [PATCH] Fixed bug in renamed detail namespace [SVN r74981] --- example/doc_offset_ptr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/doc_offset_ptr.cpp b/example/doc_offset_ptr.cpp index 7fb2414..feabead 100644 --- a/example/doc_offset_ptr.cpp +++ b/example/doc_offset_ptr.cpp @@ -19,7 +19,7 @@ const char *get_shared_memory_name() { std::stringstream s; - s << "process_" << boost::interprocess::detail::get_current_process_id(); + s << "process_" << boost::interprocess::ipcdetail::get_current_process_id(); static std::string str = s.str(); return str.c_str(); }