Skip to content
Snippets Groups Projects
csandbox.cc 460 B
Newer Older
  • Learn to ignore specific revisions
  • Daniel Lyubomirov's avatar
    Daniel Lyubomirov committed
    #include <boost/core/ignore_unused.hpp>
    #include <iostream>
    #include <boost/filesystem.hpp>
    
    Daniel Lyubomirov's avatar
    Daniel Lyubomirov committed
    namespace fs = boost::filesystem;
    
    auto main(int argc, char** argv) -> int {
      boost::ignore_unused(argc);
      boost::ignore_unused(argv);
    
      // fs::path ;
    
      std::cout << "Temp directory is " << fs::temp_directory_path() << '\n';
      // std::cout << "Home directory is " << fs::user << '\n';
    
      // p.wstring();
      // std::cout << p.string() << std::endl;;
    
      return 1;