std::tr1::function<bool(bool)> f4 = 
        std::tr1::bind(
            std::logical_and
<bool>(),
            std::tr1::bind(std::logical_not
<bool>(), std::tr1::placeholders::_1),
            
true);

想在vs2010里玩一玩function programming,却被郁闷了,又发现了一个别人发现过的bug

A bug about std::tr1::bind 

 

相关文章:

  • 2021-12-22
  • 2022-12-23
  • 2021-08-20
  • 2021-12-11
  • 2021-08-26
  • 2021-12-30
  • 2021-10-25
  • 2021-11-26
猜你喜欢
  • 2022-12-23
  • 2021-09-10
  • 2021-06-07
  • 2022-12-23
  • 2021-12-25
  • 2021-12-09
相关资源
相似解决方案