$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r74981 - branches/release/libs/intrusive/example
From: igaztanaga_at_[hidden]
Date: 2011-10-16 13:29:03
Author: igaztanaga
Date: 2011-10-16 13:29:02 EDT (Sun, 16 Oct 2011)
New Revision: 74981
URL: http://svn.boost.org/trac/boost/changeset/74981
Log:
Fixed bug in renamed detail namespace
Text files modified: 
   branches/release/libs/intrusive/example/doc_offset_ptr.cpp |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: branches/release/libs/intrusive/example/doc_offset_ptr.cpp
==============================================================================
--- branches/release/libs/intrusive/example/doc_offset_ptr.cpp	(original)
+++ branches/release/libs/intrusive/example/doc_offset_ptr.cpp	2011-10-16 13:29:02 EDT (Sun, 16 Oct 2011)
@@ -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();
 }