- Jul 30, 2011
-
-
Alexis Hunt authored
avoids bugs where, when the allocator's size_type was smaller than int, the multiplication or division would cause integral promotions and, with two different integer types as arguments, deduction of the template arguments would fail. llvm-svn: 136540
-
Alexis Hunt authored
are two motivations for this. First, this allows users who are specializing __gnu_ext::hash to continue doing so without changing their code. Second, SGI specifies hash overloads for char* and const char* that perform a hash of the string, not of the pointer. In order to support this, the hashing code for string is factored out. llvm-svn: 136539
-
Alexis Hunt authored
the type name 'data_type', which is specified by the SGI spec as being the correct type name for the mapped type. The second is an overload of insert found in standard containers, taking an iterator as a 'hint' (which we ignore in the standard containers as well). libstdc++'s implementation includes these overloads, and they are needed to make insert_iterator work (which I suspect is the real motivation for including them in the standard containers). The motivation for including these overloads of insert and leaving the mapped_type typedef is to make it easier for clients to migrate to the standard containers. llvm-svn: 136538
-
- Jul 29, 2011
-
-
Howard Hinnant authored
llvm-svn: 136526
-
- Jul 28, 2011
-
-
Howard Hinnant authored
llvm-svn: 136291
-
- Jul 27, 2011
-
-
- Jul 25, 2011
-
-
Howard Hinnant authored
llvm-svn: 135897
-
- Jul 24, 2011
-
-
Howard Hinnant authored
Optimization of string::operator< by M.E. O'Neill. Discussion in http://llvm.org/bugs/show_bug.cgi?id=10461 llvm-svn: 135893
-
Howard Hinnant authored
llvm-svn: 135873
-
- Jul 23, 2011
-
-
Howard Hinnant authored
llvm-svn: 135854
-
- Jul 18, 2011
-
-
Alexis Hunt authored
std::underlying_type. llvm-svn: 135410
-
Howard Hinnant authored
llvm-svn: 135393
-
- Jul 15, 2011
-
-
Howard Hinnant authored
llvm-svn: 135272
-
Howard Hinnant authored
llvm-svn: 135271
-
Alexis Hunt authored
issues with it. llvm-svn: 135246
-
- Jul 13, 2011
-
-
Howard Hinnant authored
llvm-svn: 135045
-
Howard Hinnant authored
Reverted to 134947. Once I got into it, I discovered there were too many problems to fix in 135035. llvm-svn: 135044
-
Alexis Hunt authored
all platforms. Unfortunately a lot of this remains conditionally compiled so as not to break Apple's ABI. The new _LIBCPP_LOCALE__L_EXTENSIONS macro can be defined on other platforms that support _l suffixes for all functions in order to use them. llvm-svn: 135035
-
- Jul 12, 2011
-
-
Alexis Hunt authored
llvm-svn: 134947
-
- Jul 09, 2011
-
-
Howard Hinnant authored
llvm-svn: 134815
-
Alexis Hunt authored
glibc, for instance, it's a const char *. llvm-svn: 134787
-
Alexis Hunt authored
llvm-svn: 134783
-
Alexis Hunt authored
traits. To the best of my knowledge, this will not break the ABI for Apple. However, it does introduce three publicly visible (although with reserved name) functions that will fail to link against the just-shipped Apple version of libc++. Since they are not used in any inline functions, no actual breakage should occur. If Howard doesn't want to put undefined functions (even internal ones) into a header, they could be surrounded by additional conditional compilation. llvm-svn: 134781
-
- Jul 07, 2011
-
-
Howard Hinnant authored
llvm-svn: 134639
-
- Jul 05, 2011
-
-
- Jul 02, 2011
-
-
Howard Hinnant authored
llvm-svn: 134327
-
Howard Hinnant authored
llvm-svn: 134325
-
- Jul 01, 2011
-
-
Howard Hinnant authored
llvm-svn: 134252
-
Howard Hinnant authored
Correct for new rules regarding implicitly deleted special members. http://llvm.org/bugs/show_bug.cgi?id=10191 llvm-svn: 134248
-
- Jun 30, 2011
-
-
Howard Hinnant authored
llvm-svn: 134190
-
- Jun 23, 2011
-
-
Douglas Gregor authored
Objective-C Automatic Reference Counting, where Objective-C object pointers can have several different qualifiers (__strong, __weak, __autoreleasing, __unsafe_unretained). These addressof() overloads are only provided in ARC mode, and the __weak variant is conditionalized on having weak-reference support in the ARC runtime. For historical reasons, Clang provides these definitions itself, and defines the macro _LIBCPP_PREDEFINED_OBJC_ARC_ADDRESSOF to note when it as done so. The code belongs here, and this redundancy will be eliminated in the future. Addresses <rdar://problem/9658274>. llvm-svn: 133656
-
- Jun 19, 2011
-
-
Howard Hinnant authored
More fixes: One of my fixes to type_traits earlier today was incorrect, so that is reverted. Recently clang appears to have tightened up its definition of is_convertible and that has caused some failures in [unordered_][multi]map. I've switched to using is_constructible to restablish the desired functionality in [unordered_][multi]map. Specifically, inserting rvalues of move-only types for the keys. llvm-svn: 133402
-
Howard Hinnant authored
llvm-svn: 133401
-
- Jun 14, 2011
-
-
Howard Hinnant authored
Provide names for template and function parameters in forward declarations. The purpose is to aid automated documentation tools. llvm-svn: 133008
-
- Jun 05, 2011
-
-
Howard Hinnant authored
llvm-svn: 132665
-
Howard Hinnant authored
llvm-svn: 132652
-
- Jun 04, 2011
-
-
Howard Hinnant authored
llvm-svn: 132650
-
Howard Hinnant authored
llvm-svn: 132647
-
Howard Hinnant authored
llvm-svn: 132646
-