Skip to content

Commit ee8024f

Browse files
committed
Fix help print for cpp solution executable.
1 parent 9cb2112 commit ee8024f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

data/languages/cpp/main.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ std::string to_lower(std::string s) {
3535

3636
int main(int argc, char *argv[]) {
3737
if (argc < 4) {
38-
std::cerr << "Usage: " << argv[0] << " <input file> <output file> "
38+
std::cerr << "Usage: " << argv[0]
39+
<< " <testcase directory> <results output file> "
3940
<< "<testcase name>" << std::endl;
4041
return 1;
4142
}

0 commit comments

Comments
 (0)