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 9268bb7 commit a5f7f11Copy full SHA for a5f7f11
tools/check-source.sh
@@ -120,6 +120,10 @@ for f in $texlib; do
120
done |
121
fail 'No namespace around class definition' || failed=1
122
123
+# ref-qualifier on member functions with no space, e.g. "const&"
124
+fgrep -ne ') const&' $texlib |
125
+ fail 'no space between cv-qualifier and ref-qualifier' || failed=1
126
+
127
# \begin{example/note} with non-whitespace in front on the same line.
128
grep -ne '^.*[^ ]\s*\\\(begin\|end\){\(example\|note\)}' $texfiles |
129
fail "non-whitespace before note/example begins" || failed=1
0 commit comments