aboutsummaryrefslogtreecommitdiff
path: root/libcxx/docs
diff options
context:
space:
mode:
authorLouis Dionne <ldionne.2@gmail.com>2023-12-05 11:19:15 -0500
committerGitHub <noreply@github.com>2023-12-05 11:19:15 -0500
commit77a00c0d546cd4aa8311b5b9031ae9ea8cdb050c (patch)
tree82bad056915baffbe04f339d980118bd904ce403 /libcxx/docs
parentc568927f3e2e7d9804ea74ecbf11c16c014ddcbc (diff)
downloadllvm-77a00c0d546cd4aa8311b5b9031ae9ea8cdb050c.zip
llvm-77a00c0d546cd4aa8311b5b9031ae9ea8cdb050c.tar.gz
llvm-77a00c0d546cd4aa8311b5b9031ae9ea8cdb050c.tar.bz2
[libc++] Replace uses of _VSTD:: by std:: (#74331)
As part of the upcoming clang-formatting of libc++, this patch performs the long desired removal of the _VSTD macro. See https://discourse.llvm.org/t/rfc-clang-formatting-all-of-libc-once-and-for-all for the clang-format proposal.
Diffstat (limited to 'libcxx/docs')
-rw-r--r--libcxx/docs/Contributing.rst1
1 files changed, 0 insertions, 1 deletions
diff --git a/libcxx/docs/Contributing.rst b/libcxx/docs/Contributing.rst
index 4cd0568..3ff8c15 100644
--- a/libcxx/docs/Contributing.rst
+++ b/libcxx/docs/Contributing.rst
@@ -67,7 +67,6 @@ avoid invoking a user-defined ``operator,``, make sure to cast the result to
In general, try to follow the style of existing code. There are a few
exceptions:
-- ``_VSTD::foo`` is no longer used in new code. Use ``std::foo`` instead.
- Prefer ``using foo = int`` over ``typedef int foo``. The compilers supported
by libc++ accept alias declarations in all standard modes.