Skip to content

Commit

Permalink
Reformat error msg
Browse files Browse the repository at this point in the history
  • Loading branch information
kgadek committed Apr 16, 2022
1 parent f1d7a7d commit 2dc0c76
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions mst.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,10 @@ int main(int argc, char* argv[]) {
cout << mstch::render(template_content, ctx);
return 0;
} catch (...) {
cerr << "Invocation:\n" << endl;
cerr << boost::current_exception_diagnostic_information() << endl << "Invocation:\n";
for (int i = 0; i < argc; ++i) {
cerr << " '" << argv[i] << "'" << endl;
}
cerr << boost::current_exception_diagnostic_information() << endl;
return -1;
}
}

0 comments on commit 2dc0c76

Please sign in to comment.