From f562f4c04f634c3a78808945f1f44181ad995d33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Sun, 16 Oct 2011 17:28:44 +0000 Subject: [PATCH] Fixed bug in renamed detail namespace [SVN r74980] --- 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(); }