1

鉴于此代码使用 boost 1.75 / gcc 11

#include <boost/bimap.hpp>
#include <string>
#include <iostream>

int main()
{
  typedef boost::bimap<std::string, int> bimap;
  bimap animals;

  animals.insert({"cat", 4});
  animals.insert({"shark", 0});
  animals.insert({"spider", 8});

  std::cout << animals.left.count("cat") << '\n';
  std::cout << animals.right.count(8) << '\n';
}

我收到很多警告,例如 boost concept failed ...

更多日志:

https://godbolt.org/z/6Ge5vxYrc

如果我没有能力升级提升,如何解决这个问题

4

1 回答 1

1

正如消息所示,您可以禁止-Wnonnull诊断:

g++ -std=c++17 -Wno-nonnull ...

https://godbolt.org/z/YEafWTqex

于 2021-10-07T15:18:30.510 回答