Fixed bug in renamed detail namespace

[SVN r74981]
This commit is contained in:
Ion Gaztañaga
2011-10-16 17:29:02 +00:00
parent 800cf8323e
commit 21e694ea5f

View File

@@ -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();
}