関数テンプレートに明示的に型指定した場合にADLで見つからない問題を修正 -- 「std::tuple」をグローバル修飾リストに追加

1 · cpprefjp · Jan. 17, 2023, 11:33 a.m.
diff --git a/lang/cpp20/adl_and_function_templates_that_are_not_visible.md b/lang/cpp20/adl_and_function_templates_that_are_not_visible.md index 2843c7bde..0854827db 100644 --- a/lang/cpp20/adl_and_function_templates_that_are_not_visible.md +++ b/lang/cpp20/adl_and_function_templates_that_are_not_visible.md @@ -53,7 +53,6 @@ int main() { std::cout << get<0>(t) << std::endl; // C++17:NG C++20:OK } ``` -* std::tuple[link /reference/tuple/tuple.md] * get[link /reference/tuple/tuple/get.md] ...