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 d2699e5 commit 5e3f1adCopy full SHA for 5e3f1ad
source/atomics.tex
@@ -3712,7 +3712,7 @@
3712
3713
\begin{codeblock}
3714
template<class T>
3715
- using @\exposid{std-atomic}@ = std::atomic<T>; // exposition only
+ using @\exposid{std-atomic}@ = std::atomic<T>; // \expos
3716
3717
#define _Atomic(T) @\exposid{std-atomic}@<T>
3718
tools/check-source.sh
@@ -63,6 +63,10 @@ grep -n '\\opt[^{]' $texfiles |
63
grep -n 'opt{}' *.tex |
64
fail '\\opt used incorrectly' || failed=1
65
66
+# Use \expos insted of "exposition only"
67
+grep -n "// exposition only" $texfiles |
68
+ fail 'use \\expos instead' || failed=1
69
+
70
# Use \notdef instead of "not defined".
71
grep -n "// not defined" $texfiles |
72
fail "use \\notdef instead" || failed=1
0 commit comments