Skip to content

Commit 7c40328

Browse files
committed
Fixed warning /home/runner/work/bin2cpp/bin2cpp/src/bin2cpp/main.cpp:226:22: warning: trigraph ??' ignored, use -trigraphs to enable [-Wtrigraphs] on Linux and macOS.
1 parent fa21768 commit 7c40328

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/bin2cpp/main.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -223,11 +223,10 @@ void printUsage()
223223
" [a-zA-Z0-9] Matches any single letter (uppercase or lowercase) or digit.\n"
224224
"\n"
225225
" For example:\n"
226-
" 'ker*##.???' would match files that starts with 'ker', and ends with 2 digits, a dot and then 3 characters."
226+
" 'ker*##.\?\?\?' would match files that starts with 'ker', and ends with 2 digits, a dot and then 3 characters.\n"
227227
" --dir-include-filter=\"*.jpg:*.png\" would include all files whose file extension is 'jpg' or 'png'.\n"
228228
" --dir-exclude-filter=\"*.bak\" would exclude all backup files.\n"
229-
" --dir-include-filter=\"*.log\" --dir-exclude-filter=\"debug.log\" would include all log files but not the one named 'debug.log'."
230-
"\n";
229+
" --dir-include-filter=\"*.log\" --dir-exclude-filter=\"debug.log\" would include all log files but not the one named 'debug.log'.\n";
231230
printf("%s", usage);
232231
}
233232

0 commit comments

Comments
 (0)