odr1_test.cpp 451 B

123456789101112131415161718192021222324
  1. // Boost Filesystem odr1_test.cpp ----------------------------------------------------//
  2. // Copyright Beman Dawes 2014.
  3. // Distributed under the Boost Software License, Version 1.0.
  4. // See http://www.boost.org/LICENSE_1_0.txt
  5. // Library home page: http://www.boost.org/libs/filesystem
  6. #include <boost/filesystem.hpp>
  7. namespace boost
  8. {
  9. namespace filesystem
  10. {
  11. void tu2();
  12. }
  13. }
  14. int main()
  15. {
  16. boost::filesystem::tu2();
  17. return 0;
  18. }