No member named 'forward' in namespace 'std'

前端 未结 1 1901
Happy的楠姐
Happy的楠姐 2020-12-20 23:27

In XCode, I recently made and tested a processing library that uses boost. I just set up a basic project in the IDE, coded away, and it builds fine.

I now want to us

相关标签:
1条回答
  • 2020-12-20 23:42

    Your project compiles as C++11 and is using a C++11 standard library (std::forward and the header are new). The original project appears to compile as C++03 with a C++03 standard library, so those new features are not available.

    0 讨论(0)
提交回复
热议问题