模板类中使用的错误构造函数

时间:2013-03-18 16:04:14

标签: c++ templates

我需要在模板化的课程中使用boost::interprocess::mutex 在我的函数中,我在下面的方式声明了我的变量

  named_mutex mutex(open_only, m_name.c_str() 
  ,permissions(0666));

我不知道为什么我无法编译,我在下面收到错误。 编译器怎么可能不使用正确的构造函数(它试图匹配具有const引用的构造函数)以及如何强制使用正确的构造函数?

    error: no matching function for call to   
    boost::interprocess::named_mutex::named_mutex(const 
    boost::interprocess::open_only_t&,   const char*, boost::interprocess::permissions)’
    /usr/local/include/boost/interprocess/sync/named_mutex.hpp:140: note: 
    candidates are: 
    boost::interprocess::named_mutex::named_mutex(boost::interprocess::open_only_t, const char*)

1 个答案:

答案 0 :(得分:1)

采用open_only_t的构造函数不接受权限参数。真的没有意义 - 你试图打开一个现有的互斥体,而不是创建一个互斥体。

删除权限,它应该找到正确的重载。