Skip to content
Snippets Groups Projects
csandbox.cc 351 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>
    
    #include <vereign/core/string.hh>
    
    #include <vereign/bytes/view.hh>
    #include <vereign/bytes/view_dump.hh>
    
    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);
    
    
      return 0;