Fixed bug in renamed detail namespace

[SVN r74980]
This commit is contained in:
Ion Gaztañaga
2011-10-16 17:28:44 +00:00
parent d56bd7b192
commit f562f4c04f

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