r253128 - Mark is_destructible/is_nothrow_destructible as implemented
David Majnemer via cfe-commits
cfe-commits at lists.llvm.org
Fri Nov 13 23:21:36 PST 2015
Author: majnemer
Date: Sat Nov 14 01:21:35 2015
New Revision: 253128
URL: http://llvm.org/viewvc/llvm-project?rev=253128&view=rev
Log:
Mark is_destructible/is_nothrow_destructible as implemented
These were implemented back in r244564. However, I forgot to update the
docs.
Modified:
cfe/trunk/docs/LanguageExtensions.rst
Modified: cfe/trunk/docs/LanguageExtensions.rst
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/LanguageExtensions.rst?rev=253128&r1=253127&r2=253128&view=diff
==============================================================================
--- cfe/trunk/docs/LanguageExtensions.rst (original)
+++ cfe/trunk/docs/LanguageExtensions.rst Sat Nov 14 01:21:35 2015
@@ -1017,8 +1017,8 @@ The following type trait primitives are
``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)
More information about the cfe-commits
mailing list