- Sep 03, 2013
-
-
Marshall Clow authored
llvm-svn: 189831
-
Marshall Clow authored
llvm-svn: 189808
-
- Sep 02, 2013
-
-
Howard Hinnant authored
llvm-svn: 189772
-
- Aug 31, 2013
-
-
Howard Hinnant authored
llvm-svn: 189723
-
Howard Hinnant authored
SFINAE out duration converting constructor if the constructor would otherwise cause a ratio compile-time overflow. This fixes LWG 2094. llvm-svn: 189722
-
- Aug 30, 2013
-
-
Howard Hinnant authored
is_destructible for function types was mistakenly returning true instead of false. This is true in both C++11 and C++1y, but has been clarified by the post C++11 LWG issue 2049. llvm-svn: 189687
-
- Aug 27, 2013
-
-
Marshall Clow authored
llvm-svn: 189399
-
- Aug 13, 2013
-
-
Marshall Clow authored
llvm-svn: 188242
-
- Aug 09, 2013
-
-
Howard Hinnant authored
Add a check for arrays of unknown bounds to is_destructible. This fixes http://llvm.org/bugs/show_bug.cgi?id=16839 llvm-svn: 188080
-
- Aug 07, 2013
-
-
Howard Hinnant authored
llvm-svn: 187906
-
Howard Hinnant authored
llvm-svn: 187905
-
Howard Hinnant authored
llvm-svn: 187904
-
Howard Hinnant authored
llvm-svn: 187903
-
- Aug 01, 2013
-
-
Howard Hinnant authored
Constrain fill_n -> memset operations to include implicit convertibility to unsigned char. This fixes http://llvm.org/bugs/show_bug.cgi?id=16764. Also a drive-by fix on a chrono test suite bug. llvm-svn: 187552
-
- Jul 31, 2013
-
-
Marshall Clow authored
llvm-svn: 187517
-
- Jul 29, 2013
-
-
Marshall Clow authored
llvm-svn: 187357
-
- Jul 24, 2013
-
-
Marshall Clow authored
llvm-svn: 187078
-
- Jul 22, 2013
-
-
Marshall Clow authored
Make tuple's constructor and std::get<>(tuple) constexpr. Final stage of fixing bug #16599. Thanks to Howard for the review and updates. llvm-svn: 186834
-
- Jul 17, 2013
-
-
Marshall Clow authored
llvm-svn: 186525
-
- Jul 16, 2013
-
-
Marshall Clow authored
llvm-svn: 186430
-
- Jul 15, 2013
-
-
Marshall Clow authored
llvm-svn: 186344
-
Howard Hinnant authored
llvm-svn: 186334
-
- Jul 13, 2013
-
-
Marshall Clow authored
llvm-svn: 186237
-
- Jul 12, 2013
-
-
Howard Hinnant authored
llvm-svn: 186136
-
- Jul 10, 2013
-
-
Marshall Clow authored
llvm-svn: 186022
-
- Jul 08, 2013
-
-
Howard Hinnant authored
llvm-svn: 185865
-
Marshall Clow authored
llvm-svn: 185863
-
Marshall Clow authored
llvm-svn: 185856
-
- Jul 04, 2013
-
-
Marshall Clow authored
llvm-svn: 185597
-
- Jul 01, 2013
-
-
Marshall Clow authored
llvm-svn: 185352
-
Marshall Clow authored
llvm-svn: 185343
-
Howard Hinnant authored
The bind and function functor constructors and assignment operators were overly general and getting confused with the copy constructor and copy assignment operators. Constrained them. This fixes http://llvm.org/bugs/show_bug.cgi?id=16385 llvm-svn: 185297
-
- Jun 30, 2013
-
-
Howard Hinnant authored
Fix bind by making _is_valid_bind_return more robust. It should return false instead of give a compile time error, always. The problem was down in ____mu_return, the version that handles nested bind objects. This fixes http://llvm.org/bugs/show_bug.cgi?id=16343 llvm-svn: 185289
-
- May 15, 2013
-
-
Howard Hinnant authored
Remove cv qualifiers from member pointers in the __member_pointer_traits test. This was causing a const-qualified bind result to malfunction. This was a recent regression due to the new use of __member_pointer_traits in restricting the __invokable and __invoke_of tests. llvm-svn: 181935
-
- May 08, 2013
-
-
Howard Hinnant authored
Constrain __invoke functions more accurately. This fixes http://llvm.org/bugs/show_bug.cgi?id=15861 . llvm-svn: 181377
-
- May 06, 2013
-
-
Howard Hinnant authored
Expose accidentally removed __compressed_pair constructor taking piecewise_construct_t. This fixes http://llvm.org/bugs/show_bug.cgi?id=15918 . llvm-svn: 181217
-
- Apr 24, 2013
-
-
Howard Hinnant authored
default_delete needs a static_assert against void types. I had previously thought that sizeof(void) would take care of this. I was wrong. llvm-svn: 180213
-
- Apr 22, 2013
-
-
Howard Hinnant authored
Somehow aligned_union got dropped through the cracks. This adds it. Did a drive-by fix of alignment_of while I was in the neighborhood. llvm-svn: 180036
-
- Apr 16, 2013
-
-
Howard Hinnant authored
addressof misbehaving for type with an implicit conversion operator to char&. This fixes http://llvm.org/bugs/show_bug.cgi?id=15754 llvm-svn: 179608
-
- Apr 14, 2013
-
-
Howard Hinnant authored
Accidentally disallowed explicit tuple conversions when all elements of the tuple can be explicitly converted. llvm-svn: 179467
-