diff options
author | David Majnemer <david.majnemer@gmail.com> | 2015-11-14 07:21:35 +0000 |
---|---|---|
committer | David Majnemer <david.majnemer@gmail.com> | 2015-11-14 07:21:35 +0000 |
commit | 55cf252d757977efef196922f821c17df502dc5b (patch) | |
tree | 0c9a54992733979c92e07268e8b3c59d8aac8824 /clang/docs | |
parent | b11ef0897cd7c67740d309e28d228c03f4dcba88 (diff) | |
download | bcm5719-llvm-55cf252d757977efef196922f821c17df502dc5b.tar.gz bcm5719-llvm-55cf252d757977efef196922f821c17df502dc5b.zip |
Mark is_destructible/is_nothrow_destructible as implemented
These were implemented back in r244564. However, I forgot to update the
docs.
llvm-svn: 253128
Diffstat (limited to 'clang/docs')
-rw-r--r-- | clang/docs/LanguageExtensions.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/docs/LanguageExtensions.rst b/clang/docs/LanguageExtensions.rst index 07b9c9968b2..333dee618ce 100644 --- a/clang/docs/LanguageExtensions.rst +++ b/clang/docs/LanguageExtensions.rst @@ -1017,8 +1017,8 @@ The following type trait primitives are supported by Clang: ``argtypes...`` such that no non-trivial functions are called as part of that initialization. This trait is required to implement the C++11 standard library. -* ``__is_destructible`` (MSVC 2013): partially implemented -* ``__is_nothrow_destructible`` (MSVC 2013): partially implemented +* ``__is_destructible`` (MSVC 2013) +* ``__is_nothrow_destructible`` (MSVC 2013) * ``__is_nothrow_assignable`` (MSVC 2013, clang) * ``__is_constructible`` (MSVC 2013, clang) * ``__is_nothrow_constructible`` (MSVC 2013, clang) |