boost::filesystem::no_check
does not seem to exist in boost::filesystem
version 3 (boost v1.54). What is the appropriate equivalent in the newer version of the library?
Asked
Active
Viewed 268 times
0

cschol
- 12,799
- 11
- 66
- 80
1 Answers
2
If you look at the constructors of path in 1.55.0, you will notice that the name checking feature was removed.
Additionally this deprecated features table indicates that name checking was removed. The simple work around for path(const string_type& str, name_check)
which existed in 1.49.0 consisted of ignoring name_check
.
As you don't want to check the name anyway simply omit it.

Brandlingo
- 2,817
- 1
- 22
- 34