Skip to content

Commit cca792f

Browse files
authored
Merge pull request #31 from onihusube/patch-1
C++ 標準ライブラリ : リンクの修正と追加
2 parents 293bb57 + 7e9d962 commit cca792f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/standardization/header.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ description: C++ 標準ライブラリヘッダの規格書、リファレンス
7777
|[<semaphore>](http://eel.is/c++draft/semaphore.syn)|en / jp / cpprefjp|libstdc++ / libc++ / MSVC|since C++20|
7878
|[<set>](http://eel.is/c++draft/associative.set.syn)|[en](https://en.cppreference.com/w/cpp/header/set) / [jp](https://ja.cppreference.com/w/cpp/header/set) / [cpprefjp](https://cpprefjp.github.io/reference/set.html)|[libstdc++](https://github.com/gcc-mirror/gcc/blob/master/libstdc%2B%2B-v3/include/std/set) / [libc++](https://github.com/llvm-mirror/libcxx/blob/master/include/set) / [MSVC](https://github.com/microsoft/STL/blob/master/stl/inc/set)||
7979
|[<shared_mutex>](http://eel.is/c++draft/shared.mutex.syn)|[en](https://en.cppreference.com/w/cpp/header/shared_mutex) / [jp](https://ja.cppreference.com/w/cpp/header/shared_mutex) / [cpprefjp](https://cpprefjp.github.io/reference/shared_mutex.html)|[libstdc++](https://github.com/gcc-mirror/gcc/blob/master/libstdc%2B%2B-v3/include/std/shared_mutex) / [libc++](https://github.com/llvm-mirror/libcxx/blob/master/include/shared_mutex) / [MSVC](https://github.com/microsoft/STL/blob/master/stl/inc/shared_mutex)|since C++14|
80-
|[<source_location>](http://eel.is/c++draft/source_location.syn)|[en](https://en.cppreference.com/w/cpp/header/source_location) / [jp](https://ja.cppreference.com/w/cpp/header/source_location) / cpprefjp|libstdc++ / libc++ / MSVC|since C++20|
80+
|[<source_location>](http://eel.is/c++draft/source.location.syn)|[en](https://en.cppreference.com/w/cpp/header/source_location) / [jp](https://ja.cppreference.com/w/cpp/header/source_location) / cpprefjp|libstdc++ / libc++ / MSVC|since C++20|
8181
|[<span>](http://eel.is/c++draft/span.syn)|[en](https://en.cppreference.com/w/cpp/header/span) / [jp](https://ja.cppreference.com/w/cpp/header/span) / [cpprefjp](https://cpprefjp.github.io/reference/span.html)|[libstdc++](https://github.com/gcc-mirror/gcc/blob/master/libstdc%2B%2B-v3/include/std/span) / [libc++](https://github.com/llvm-mirror/libcxx/blob/master/include/span) / MSVC|since C++20|
8282
|[<sstream>](http://eel.is/c++draft/sstream.syn)|[en](https://en.cppreference.com/w/cpp/header/sstream) / [jp](https://ja.cppreference.com/w/cpp/header/sstream) / [cpprefjp](https://cpprefjp.github.io/reference/sstream.html)|[libstdc++](https://github.com/gcc-mirror/gcc/blob/master/libstdc%2B%2B-v3/include/std/sstream) / [libc++](https://github.com/llvm-mirror/libcxx/blob/master/include/sstream) / [MSVC](https://github.com/microsoft/STL/blob/master/stl/inc/sstream)||
8383
|[<stack>](http://eel.is/c++draft/stack.syn)|[en](https://en.cppreference.com/w/cpp/header/stack) / [jp](https://ja.cppreference.com/w/cpp/header/stack) / [cpprefjp](https://cpprefjp.github.io/reference/stack.html)|[libstdc++](https://github.com/gcc-mirror/gcc/blob/master/libstdc%2B%2B-v3/include/std/stack) / [libc++](https://github.com/llvm-mirror/libcxx/blob/master/include/stack) / [MSVC](https://github.com/microsoft/STL/blob/master/stl/inc/stack)||
@@ -108,7 +108,7 @@ description: C++ 標準ライブラリヘッダの規格書、リファレンス
108108
|---|---|---|---|
109109
|[&lt;ccomplex&gt;](http://eel.is/c++draft/depr.complex.h.syn)|[en](https://en.cppreference.com/w/cpp/header/ccomplex) / [jp](https://ja.cppreference.com/w/cpp/header/ccomplex) / cpprefjp|[libstdc++](https://github.com/gcc-mirror/gcc/blob/master/libstdc%2B%2B-v3/include/c_global/ccomplex) / [libc++](https://github.com/llvm-mirror/libcxx/blob/master/include/ccomplex) / [MSVC](https://github.com/microsoft/STL/blob/master/stl/inc/ccomplex)|since C++11,<br>deprecated in C++17,<br>removed in C++20|
110110
|[&lt;ciso646&gt;](http://eel.is/c++draft/depr.iso646.h.syn)|[en](https://en.cppreference.com/w/cpp/header/ciso646) / [jp](https://ja.cppreference.com/w/cpp/header/ciso646) / cpprefjp|[libstdc++](https://github.com/gcc-mirror/gcc/blob/master/libstdc%2B%2B-v3/include/c_global/ciso646) / [libc++](https://github.com/llvm-mirror/libcxx/blob/master/include/ciso646) / [MSVC](https://github.com/microsoft/STL/blob/master/stl/inc/ciso646)|removed in C++20|
111-
|[&lt;codecvt&gt;](http://eel.is/c++draft/depr.codecvt.syn)|[en](https://en.cppreference.com/w/cpp/header/codecvt) / [jp](https://ja.cppreference.com/w/cpp/header/codecvt) / cpprefjp|[libstdc++](https://github.com/gcc-mirror/gcc/blob/master/libstdc%2B%2B-v3/include/std/codecvt) / [libc++](https://github.com/llvm-mirror/libcxx/blob/master/include/codecvt) / [MSVC](https://github.com/microsoft/STL/blob/master/stl/inc/codecvt)|since C++11,<br>deprecated in C++17|
111+
|[&lt;codecvt&gt;](http://eel.is/c++draft/depr.codecvt.syn)|[en](https://en.cppreference.com/w/cpp/header/codecvt) / [jp](https://ja.cppreference.com/w/cpp/header/codecvt) / [cpprefjp](https://cpprefjp.github.io/reference/codecvt.html)|[libstdc++](https://github.com/gcc-mirror/gcc/blob/master/libstdc%2B%2B-v3/include/std/codecvt) / [libc++](https://github.com/llvm-mirror/libcxx/blob/master/include/codecvt) / [MSVC](https://github.com/microsoft/STL/blob/master/stl/inc/codecvt)|since C++11,<br>deprecated in C++17|
112112
|[&lt;cstdalign&gt;](http://eel.is/c++draft/depr.stdalign.h.syn)|[en](https://en.cppreference.com/w/cpp/header/cstdalign) / [jp](https://ja.cppreference.com/w/cpp/header/cstdalign) / cpprefjp|[libstdc++](https://github.com/gcc-mirror/gcc/blob/master/libstdc%2B%2B-v3/include/c_global/cstdalign) / libc++ / [MSVC](https://github.com/microsoft/STL/blob/master/stl/inc/cstdalign)|since C++11,<br>deprecated in C++17,<br>removed in C++20|
113113
|[&lt;cstdbool&gt;](http://eel.is/c++draft/depr.stdbool.h.syn)|[en](https://en.cppreference.com/w/cpp/header/cstdbool) / [jp](https://ja.cppreference.com/w/cpp/header/cstdbool) / cpprefjp|[libstdc++](https://github.com/gcc-mirror/gcc/blob/master/libstdc%2B%2B-v3/include/c_global/cstdbool) / [libc++](https://github.com/llvm-mirror/libcxx/blob/master/include/cstdbool) / [MSVC](https://github.com/microsoft/STL/blob/master/stl/inc/cstdbool)|since C++11,<br>deprecated in C++17,<br>removed in C++20|
114114
|[&lt;ctgmath&gt;](http://eel.is/c++draft/depr.tgmath.h.syn)|[en](https://en.cppreference.com/w/cpp/header/ctgmath) / [jp](https://ja.cppreference.com/w/cpp/header/ctgmath) / cpprefjp|[libstdc++](https://github.com/gcc-mirror/gcc/blob/master/libstdc%2B%2B-v3/include/c_global/ctgmath) / [libc++](https://github.com/llvm-mirror/libcxx/blob/master/include/ctgmath) / [MSVC](https://github.com/microsoft/STL/blob/master/stl/inc/ctgmath)|since C++11,<br>deprecated in C++17,<br>removed in C++20|

0 commit comments

Comments
 (0)