在“ struct boost :: enable_if <boost :: is_pod <t>,void>”中没有名为“ type”的类型

时间:2018-10-09 10:48:58

标签: c++ boost

我正在尝试在Linux中编译此repo,但在此步骤中遇到了一些麻烦。

* util / BinarySerialization.hpp

template <typename T> inline
typename boost::enable_if<boost::is_pod<T>, void>::type
writeBinary(const T& data, std::ostream& outputStream)
{
    ...
}

template <typename T> inline
typename boost::enable_if<boost::is_pod<T>, void>::type
writeBinary(const std::vector<T>& data, std::ostream& outputStream)
{
    ...
}

template <typename T> inline
typename boost::disable_if<boost::is_pod<T>, void>::type
writeBinary(const std::vector<T>& data, std::ostream& outputStream)
{
    // write vector length
    size_t length = data.size();
    outputStream.write(reinterpret_cast<const char*>(&length), sizeof(length));
    if (!outputStream) throw IOException();
    // write vector data one by one
    for (size_t i = 0; i < length; ++i)
        writeBinary(data[i], outputStream); // error!
}

void writeBinary(const std::string& data, std::ostream& outputStream);

* serialization / ElementBS.cpp

void bil::writeBinary(const Element& data, std::ostream& outputStream)
{
    writeBinary(data.m_name, outputStream);
    writeBinary(data.m_options, outputStream);
}

* xdlrc / model / Element.hpp

typedef std::vector<std::string> ConfigurationOptions;

class Element {
public:
    Element();

    std::string& name();
    const std::string& name() const;
    ConfigurationOptions& options();
    const ConfigurationOptions& options() const;
    void clear();

private:
    friend void writeBinary(const Element& data, std::ostream& outputStream);
    friend void readBinary(Element& data, std::istream& inputStream);

    std::string m_name;
    ConfigurationOptions m_options;

};
  

util / BinarySerialization.hpp:在'typename boost :: disable_if 的实例中,void> :: type bil :: writeBinary(const std :: vector &,std :: ostream&)[with T = std :: __ cxx11 :: basic_string ;类型名称boost :: disable_if ,void> :: type = void; std :: ostream = std :: basic_ostream ]':
  serialization / ElementBS.cpp:16:45:从此处需要
  util / BinarySerialization.hpp:78:21:错误:没有匹配的函数可调用'writeBinary(const value_type&,std :: ostream&)'
  writeBinary(data [i],outputStream);
  ...
  BinarySerialization.hpp:31:5:错误:在'struct boost :: enable_if >,void>'

中没有名为'type'的类型

ElementBS.cpp中的第一个writeBinary与BinarySerialization.hpp中的最后一个函数匹配,ElementBS.cpp中的第二个函数与第三个函数匹配。但是,writeBinary(data [i],outputStream);在第3个功能中无法匹配任何功能。我不知道该如何解决;

1 个答案:

答案 0 :(得分:0)

要解决编译器错误,请确保在void writeBinary(const std::string& data, std::ostream& outputStream);函数模板之前声明writeBinary

这是因为在模板实例化期间,仅执行了依赖于参数的名称查找的依赖名称查找的第二阶段。由于writeBinary(const std::string& data, std::ostream& outputStream)的参数来自命名空间std,因此依赖于参数的名称查找永远不会发现此重载,因为它不在命名空间std中。

通过在使用该函数的模板之前声明该函数,可以在两阶段查找的第一阶段使该函数可用。然后在功能模板实例化(即名称查找的第二阶段)期间考虑该名称。