0

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?

cschol
  • 12,799
  • 11
  • 66
  • 80

1 Answers1

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