We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76cc8aa commit 8c1158eCopy full SHA for 8c1158e
.github/workflows/make.yml
@@ -23,6 +23,15 @@ jobs:
23
echo
24
false
25
fi
26
+ - name: Check comment style
27
+ run: |
28
+ if grep " //" */*.[ch]; then
29
+ echo
30
+ echo "*** C++-style comments were detected in the above lines."
31
+ echo "*** Please change to use /* ... */ -style comments."
32
33
+ false
34
+ fi
35
36
build_and_coverage:
37
runs-on: ubuntu-latest
src/sortedarray.h
@@ -164,4 +164,4 @@ void sortedarray_clear(SortedArray *sortedarray);
164
}
165
#endif
166
167
-#endif // #ifndef ALGORITHM_SORTEDARRAY_H
+#endif /* #ifndef ALGORITHM_SORTEDARRAY_H */
0 commit comments