| 12 | namespace fs = boost::filesystem; |
| 13 | |
| 14 | int main(int argc, char* argv[]) |
| 15 | { |
| 16 | if (argc < 2) |
| 17 | { |
| 18 | std::cout << "Usage: tut0 path\n"; |
| 19 | return 1; |
| 20 | } |
| 21 | |
| 22 | std::cout << argv[1] << '\n'; |
| 23 | |
| 24 | return 0; |
| 25 | } |
nothing calls this directly
no outgoing calls
no test coverage detected