在boost :: filesystem V3中等效boost :: file_system :: no_check?

时间:2014-07-24 21:09:56

标签: c++ boost-filesystem

boost::filesystem::no_check版本3(boost v1.54)中似乎不存在

boost::filesystem。在较新版本的库中,适当的等价物是什么?

1 个答案:

答案 0 :(得分:2)

如果您查看constructors of path in 1.55.0,您会发现名称检查功能已被删除。 此外,this deprecated features table表示已删除名称检查。 1.49.0中存在的path(const string_type& str, name_check)的简单解决方法是忽略name_check

因为您不想检查名称,只需省略它。