我有一个使用ns-3进行编译的代码,但是当我尝试编译它们时遇到了一些问题。我认为原因可能是C ++ 11中不推荐使用某些功能。但是我不知道如何修改代码。
这里是我认为应该修改的代码:
m_sendBuffer.erase(
std::remove_if(
m_sendBuffer.begin(), m_sendBuffer.end(),
std::bind2nd(std::ptr_fun(DsrSendBuffer::IsEqual), dst)
),
m_sendBuffer.end()
);
这里是错误:
../src/dsr/model/dsr-rsendbuff.cc:102:55: error: 'ptr_fun<ns3::dsr::DsrSendBuffEntry, ns3::Ipv4Address, bool>' is deprecated [-Werror,-Wdeprecated-declarations]
std::bind (std::ptr_fun (DsrSendBuffer::IsEqual), dst)), m_sendBuffer.end ());
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/functional:1115:1: note: 'ptr_fun<ns3::dsr::DsrSendBuffEntry, ns3::Ipv4Address, bool>' has been explicitly marked deprecated here
_LIBCPP_DEPRECATED_IN_CXX11 inline _LIBCPP_INLINE_VISIBILITY
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__config:1101:39: note: expanded from macro '_LIBCPP_DEPRECATED_IN_CXX11'
define _LIBCPP_DEPRECATED_IN_CXX11 _LIBCPP_DEPRECATED
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__config:1090:48: note: expanded from macro '_LIBCPP_DEPRECATED'
define _LIBCPP_DEPRECATED __attribute__ ((deprecated))
似乎他们确实使用了已弃用的API,但是您仍然可以通过将弃用警告视为警告来编译它。将此添加到您的编译器选项:
-Wno-error=deprecated-declarations
如果要升级代码,则可以改用此lambda:
m_sendBuffer.erase(
std::remove_if(
m_sendBuffer.begin(), m_sendBuffer.end(),
[&dst](auto const& buf) { return DsrSendBuffer::IsEqual(buf, dst); }
),
m_sendBuffer.end()
);
您可以从ns-3
克隆ns-3 @ gitlab的新版本。
std::ptr_fun
和std::bind2nd
的使用已于2019年8月25日删除。