- 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 22, 2011
-
-
Dave Zarzycki authored
llvm-svn: 135774
-
- Jul 19, 2011
-
-
Howard Hinnant authored
llvm-svn: 135460
-
Alexis Hunt authored
between C++03 and C++0x and its effect on exceptions, and another two to not test move construction when rvalue references are not available. llvm-svn: 135445
-
Alexis Hunt authored
hard-coded names. llvm-svn: 135444
-
- Jul 18, 2011
-
-
Alexis Hunt authored
for the tests that open new data files. llvm-svn: 135422
-
Alexis Hunt authored
std::underlying_type. llvm-svn: 135410
-
Alexis Hunt authored
itself non-throwing. Since nested_exception's destructor is non-throwing, if B's destructor is not, this causes an error in C++03 mode due to the overriding function having a more lax specification. This did not occur in C++0x mode as A's destructor was implicitly non-throwing. llvm-svn: 135400
-
Howard Hinnant authored
llvm-svn: 135393
-
- Jul 15, 2011
-
-
Howard Hinnant authored
llvm-svn: 135272
-
Howard Hinnant authored
llvm-svn: 135271
-
Alexis Hunt authored
proper va_list time on non-darwin platforms. llvm-svn: 135247
-
Alexis Hunt authored
issues with it. llvm-svn: 135246
-
- Jul 14, 2011
-
-
Howard Hinnant authored
llvm-svn: 135125
-
- 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: 134843
-
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 08, 2011
-
-
Howard Hinnant authored
llvm-svn: 134663
-
Alexis Hunt authored
llvm-svn: 134650
-
- Jul 07, 2011
-
-
Howard Hinnant authored
llvm-svn: 134639
-
- Jul 06, 2011
-
-
Alexis Hunt authored
not test for this. llvm-svn: 134531
-
- Jul 05, 2011
-
-
- Jul 04, 2011
-
-
Howard Hinnant authored
llvm-svn: 134375
-
- Jul 02, 2011
-
-
Howard Hinnant authored
llvm-svn: 134327
-