Merge pull request #6581 from albert-github/feature/bug_text_cpp_namespace

Redirect and readability
This commit is contained in:
Sebastien Loriot 2022-05-26 18:09:01 +02:00 committed by GitHub
commit b98b855b61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -63,14 +63,14 @@ class Some_further_class_local_to_Package;
According to the resolutions of the following issues in the forthcoming
\cpp-standard (
<a href="http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-defects.html#225">225</a>,
<a href="http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-defects.html#226">226</a>
<a href="http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-defects.html#229">229</a>.
<a href="https://www.open-std.org/jtc1/sc22/wg21/docs/lwg-defects.html#225">225</a>,
<a href="https://www.open-std.org/jtc1/sc22/wg21/docs/lwg-defects.html#226">226</a> and
<a href="https://www.open-std.org/jtc1/sc22/wg21/docs/lwg-defects.html#229">229</a>
):
<TT>Unless otherwise specified, no global or non-member function in the standard library
<blockquote>Unless otherwise specified, no global or non-member function in the standard library
shall use a function from another namespace which is found through argument-dependent
name lookup
</TT>, the namespace `CGAL::NTS` does not need to be used anymore
name lookup</blockquote>
the namespace `CGAL::NTS` does not need to be used anymore
(currently `CGAL_NTS` macro boils down to `CGAL::`).
\section Developer_manualRequirementsandrecommendations_1 Requirements and recommendations