aboutsummaryrefslogtreecommitdiffhomepage
path: root/public/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes/index.html
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2023-03-10 02:31:50 +0900
committernsfisis <nsfisis@gmail.com>2023-03-10 02:32:34 +0900
commit270b15e7f5cc6f3f15cced12d332d17fe5a80205 (patch)
tree64e32e48dd90bd944d374883c4e5ce8d2f5d8e71 /public/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes/index.html
parent21cf71f392dc6489bbd0a817ced98384cb79483d (diff)
downloadblog.nsfisis.dev-270b15e7f5cc6f3f15cced12d332d17fe5a80205.tar.gz
blog.nsfisis.dev-270b15e7f5cc6f3f15cced12d332d17fe5a80205.tar.zst
blog.nsfisis.dev-270b15e7f5cc6f3f15cced12d332d17fe5a80205.zip
nuldoc: fix `a` link not working
Diffstat (limited to 'public/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes/index.html')
-rw-r--r--public/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes/index.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/public/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes/index.html b/public/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes/index.html
index 63a1e08..e52be97 100644
--- a/public/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes/index.html
+++ b/public/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes/index.html
@@ -44,7 +44,7 @@
</ol>
</section>
<p>
- この記事は Qiita から移植してきたものです。 元 URL:<a xl:href="https://qiita.com/nsfisis/items/94090937bcf860cfa93b">https://qiita.com/nsfisis/items/94090937bcf860cfa93b</a>
+ この記事は Qiita から移植してきたものです。 元 URL:<a href="https://qiita.com/nsfisis/items/94090937bcf860cfa93b">https://qiita.com/nsfisis/items/94090937bcf860cfa93b</a>
</p>
<p>
@@ -93,7 +93,7 @@ std::cout &lt;&lt; &quot;Hello, World!&quot; &lt;&lt; std::endl;
</p>
<p>
- 別件で cppreference.com の<a xl:href="https://en.cppreference.com/w/cpp/language/identifiers">identifier のページ</a>を読んでいた時、次の文が目に止まった。
+ 別件で cppreference.com の<a href="https://en.cppreference.com/w/cpp/language/identifiers">identifier のページ</a>を読んでいた時、次の文が目に止まった。
</p>
<blockquote>
@@ -119,7 +119,7 @@ std::cout &lt;&lt; &quot;Hello, World!&quot; &lt;&lt; std::endl;
</p>
<p>
- 同サイトの<a xl:href="https://en.cppreference.com/w/cpp/keyword">keywords のページ</a>から一覧を拝借し、上のコードが出来上がった (C++17 においてキーワードでないものなど、一部省いている)。 大量の警告 (unknown attribute `〇〇&apos; ignored) がコンパイラから出力されるが、コンパイルできる。
+ 同サイトの<a href="https://en.cppreference.com/w/cpp/keyword">keywords のページ</a>から一覧を拝借し、上のコードが出来上がった (C++17 においてキーワードでないものなど、一部省いている)。 大量の警告 (unknown attribute `〇〇&apos; ignored) がコンパイラから出力されるが、コンパイルできる。
</p>
<p>
@@ -136,7 +136,7 @@ std::cout &lt;&lt; &quot;Hello, World!&quot; &lt;&lt; std::endl;
</p>
<p>
- 引用元:<a xl:href="https://timsong-cpp.github.io/cppwp/n4659/dcl.attr#grammar-4">https://timsong-cpp.github.io/cppwp/n4659/dcl.attr#grammar-4</a>
+ 引用元:<a href="https://timsong-cpp.github.io/cppwp/n4659/dcl.attr#grammar-4">https://timsong-cpp.github.io/cppwp/n4659/dcl.attr#grammar-4</a>
</p>
<blockquote>
@@ -150,7 +150,7 @@ std::cout &lt;&lt; &quot;Hello, World!&quot; &lt;&lt; std::endl;
</p>
<p>
- ところで、代替トークン (alternative token) とは<code>and</code>(<code>&amp;</code>) や<code>bitor</code>(<code>|</code>) などのことだが、<code>identifier</code>の構文上の要件を満たさないような代替トークンなどあるのか? 疑問に思って調べたところ、代替トークンという語にはダイグラフも含まれるらしい (参考:<a xl:href="https://timsong-cpp.github.io/cppwp/n4659/lex.digraph">同ドラフト</a>)
+ ところで、代替トークン (alternative token) とは<code>and</code>(<code>&amp;</code>) や<code>bitor</code>(<code>|</code>) などのことだが、<code>identifier</code>の構文上の要件を満たさないような代替トークンなどあるのか? 疑問に思って調べたところ、代替トークンという語にはダイグラフも含まれるらしい (参考:<a href="https://timsong-cpp.github.io/cppwp/n4659/lex.digraph">同ドラフト</a>)
</p>
<ul>