From 270b15e7f5cc6f3f15cced12d332d17fe5a80205 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Fri, 10 Mar 2023 02:31:50 +0900 Subject: nuldoc: fix `a` link not working --- .../cpp-you-can-use-keywords-in-attributes/index.html | 10 +++++----- .../posts/2021-10-02/python-unbound-local-error/index.html | 2 +- .../2021-10-02/ruby-detect-running-implementation/index.html | 8 ++++---- .../2021-10-02/ruby-then-keyword-and-case-in/index.html | 4 ++-- .../rust-where-are-primitive-types-from/index.html | 4 ++-- .../index.html | 12 ++++++------ .../2021-10-02/vim-swap-order-of-selected-lines/index.html | 2 +- 7 files changed, 21 insertions(+), 21 deletions(-) (limited to 'public/posts/2021-10-02') 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 @@

- この記事は Qiita から移植してきたものです。 元 URL:https://qiita.com/nsfisis/items/94090937bcf860cfa93b + この記事は Qiita から移植してきたものです。 元 URL:https://qiita.com/nsfisis/items/94090937bcf860cfa93b

@@ -93,7 +93,7 @@ std::cout << "Hello, World!" << std::endl;

- 別件で cppreference.com のidentifier のページを読んでいた時、次の文が目に止まった。 + 別件で cppreference.com のidentifier のページを読んでいた時、次の文が目に止まった。

@@ -119,7 +119,7 @@ std::cout << "Hello, World!" << std::endl;

- 同サイトのkeywords のページから一覧を拝借し、上のコードが出来上がった (C++17 においてキーワードでないものなど、一部省いている)。 大量の警告 (unknown attribute `〇〇' ignored) がコンパイラから出力されるが、コンパイルできる。 + 同サイトのkeywords のページから一覧を拝借し、上のコードが出来上がった (C++17 においてキーワードでないものなど、一部省いている)。 大量の警告 (unknown attribute `〇〇' ignored) がコンパイラから出力されるが、コンパイルできる。

@@ -136,7 +136,7 @@ std::cout << "Hello, World!" << std::endl;

- 引用元:https://timsong-cpp.github.io/cppwp/n4659/dcl.attr#grammar-4 + 引用元:https://timsong-cpp.github.io/cppwp/n4659/dcl.attr#grammar-4

@@ -150,7 +150,7 @@ std::cout << "Hello, World!" << std::endl;

- ところで、代替トークン (alternative token) とはand(&) やbitor(|) などのことだが、identifierの構文上の要件を満たさないような代替トークンなどあるのか? 疑問に思って調べたところ、代替トークンという語にはダイグラフも含まれるらしい (参考:同ドラフト) + ところで、代替トークン (alternative token) とはand(&) やbitor(|) などのことだが、identifierの構文上の要件を満たさないような代替トークンなどあるのか? 疑問に思って調べたところ、代替トークンという語にはダイグラフも含まれるらしい (参考:同ドラフト)