Age | Commit message (Expand) | Author |
2013-03-27 | Implement compiler intrinsics needed for compatibility with MSVC 2012 <type_t... | Joao Matos |
2012-12-08 | Finish implementing 'selected constructor' rules for triviality in C++11. In | Richard Smith |
2012-08-14 | Make __is_convertible_to handle abstract types correctly. PR13591. | Eli Friedman |
2012-07-27 | Final piece of core issue 1330: delay computing the exception specification of | Richard Smith |
2012-04-28 | Rename isPODType (using the C++98 rules) into isCXX98PODType and make isPODTy... | Benjamin Kramer |
2012-04-28 | Revert "Use the C++11 definition of PODness for __is_pod in C++11 mode." | Benjamin Kramer |
2012-04-28 | Use the C++11 definition of PODness for __is_pod in C++11 mode. | Benjamin Kramer |
2012-02-26 | Special members which are defaulted or deleted on their first declaration are | Richard Smith |
2012-02-24 | Implement a new type trait __is_trivially_constructible(T, Args...) | Douglas Gregor |
2012-02-23 | Provide the __is_trivially_assignable type trait, which provides | Douglas Gregor |
2012-01-25 | Make sure we correctly treat __is_convertible_to as an unevaluated context. ... | Eli Friedman |
2011-12-03 | Implement support for the __is_final type trait, to determine whether | Douglas Gregor |
2011-10-13 | Update all tests other than Driver/std.cpp to use -std=c++11 rather than | Richard Smith |
2011-10-12 | Teach __has_nothrow_assign not to complain about access (GCC and EDG | Douglas Gregor |
2011-06-11 | Implement support for C++11 in-class initialization of non-static data members. | Richard Smith |
2011-05-13 | Implement the __is_trivially_copyable type trait | Sean Hunt |
2011-05-01 | Add a triple to this test, otherwise it fails under MSVC because wchar_t is u... | Francois Pichet |
2011-04-30 | Make type-traits reflect that Clang's vectors act like scalar types. | Chandler Carruth |
2011-04-30 | Switch the type-trait like APIs on the AST to only check for incomplete | Chandler Carruth |
2011-04-28 | Implementation of Embarcadero array type traits | John Wiegley |
2011-04-27 | t/clang/type-traits | John Wiegley |
2011-04-23 | Begin tracking trivialness of move constructors and move assignment | Chandler Carruth |
2011-04-23 | Flesh out these tests just a tad more. This provides targeted | Chandler Carruth |
2011-04-23 | Test POD and trivial type traits given a class derived from a generic | Chandler Carruth |
2011-04-23 | Use a more precise name for some of the types here, and re-group several | Chandler Carruth |
2011-04-23 | Mechanical change moving all of the test statements away from a pattern | Chandler Carruth |
2011-04-23 | Implement basic __is_trivial type-trait support, enough to close PR9472. | Chandler Carruth |
2011-01-28 | Fix some corner cases in the __is_base_of logic. | John McCall |
2011-01-28 | Give OpaqueValueExpr a source location, because its source location | Douglas Gregor |
2011-01-27 | Teach the evaluation of the __is_convertible_to trait to translate | Douglas Gregor |
2011-01-27 | Implement the Microsoft __is_convertible_to type trait, modeling the | Douglas Gregor |
2010-12-07 | Type traits intrinsic implementation: __is_base_of(T, U) | Francois Pichet |
2010-09-28 | Centralize the management of CXXRecordDecl::DefinitionData's Empty bit | Douglas Gregor |
2010-09-14 | Fix destructor and assignment operator lookup in the has_nothrow traits. | Sebastian Redl |
2010-09-13 | Don't crash when using type traits on a class with a constructor template. | Sebastian Redl |
2010-09-13 | Remove CXXRecordDecl::getDefaultConstructor(), an inherently unsafe function ... | Sebastian Redl |
2010-09-13 | Have __has_nothrow_copy use Sema's lookup routines. This fixes the problem wi... | Sebastian Redl |
2010-09-08 | Allow (cv) void and incomplete arrays to be passed to the type traits. | Sebastian Redl |
2010-09-02 | Implement __has_virtual_destructor. Patch by Steven Watanabe. | Sebastian Redl |
2010-08-31 | Implement the __has_nothrow trait family, by Steven Watanabe. | Sebastian Redl |
2009-12-15 | Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'. | Daniel Dunbar |
2009-12-03 | When instantiating a class, if a base specifier is not dependent we still nee... | Anders Carlsson |
2009-08-15 | Implement __is_empty. Patch by Sean Hunt. | Eli Friedman |
2009-07-23 | This patch fixes the implementations of the __has_trivial_destructor | Douglas Gregor |
2009-03-24 | Rename clang to clang-cc. | Daniel Dunbar |
2009-01-05 | PODness and Type Traits | Sebastian Redl |