We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78df72f commit 5cd84a5Copy full SHA for 5cd84a5
1 file changed
main.cpp
@@ -1,7 +1,7 @@
1
/**
2
* @file main.cpp
3
* @brief Main source file of SingleInclude
4
- * @version 0.6
+ * @version 1.0
5
* @author dragon-archer (dragon-archer@outlook.com)
6
* @copyright Copyright (c) 2022
7
*/
@@ -412,7 +412,7 @@ int main(int argc, char* argv[]) {
412
ofstream fout;
413
fout.open(config.outfilename);
414
if(!fout.is_open()) {
415
- error_state error { E_FILE_ERROR, "Cannot open output file " + config.outfilename.string() };
+ error_state error { E_FILE_ERROR, "Cannot open output file: " + config.outfilename.string() };
416
cerr << error.what() << endl;
417
return error;
418
}
0 commit comments