Age | Commit message (Expand) | Author | Files | Lines |
2015-02-28 | cmath: account for MSVCRT 12.0 changes | Saleem Abdulrasool | 2 | -3/+13 |
2015-02-26 | Add self to CREDITS.txt | Jonathan Roelofs | 1 | -0/+4 |
2015-02-26 | Add remote testing support to the lit config. | Jonathan Roelofs | 6 | -21/+249 |
2015-02-25 | libc++: support newlib's ctype | JF Bastien | 2 | -7/+23 |
2015-02-25 | Add trailing return types (and noexcept specifications) to the 'diamond opera... | Marshall Clow | 2 | -19/+57 |
2015-02-24 | Make the forward declaration for array swap have the same inline/visibility a... | Marshall Clow | 1 | -0/+1 |
2015-02-24 | Remove XFAIL on string view test for apples clang compiler. Thanks to Marshal... | Eric Fiselier | 1 | -1/+1 |
2015-02-24 | Reword ELAST warning | JF Bastien | 1 | -1/+1 |
2015-02-23 | Change string_view::at to make it work with gcc and VC++. Thanks to K-ballo f... | Marshall Clow | 1 | -4/+1 |
2015-02-21 | [libc++] Try and prevent evaluation of `is_default_constructible` on tuples d... | Eric Fiselier | 3 | -2/+22 |
2015-02-21 | [libcxx] Move to using libc++abi2.exp as the default symbol list for libc++ | Eric Fiselier | 3 | -1/+9 |
2015-02-20 | Add self to CREDITS.TXT | Larisse Voufo | 1 | -0/+3 |
2015-02-20 | More on adding sized deallocation functions in libc++: Continuing from r22928... | Larisse Voufo | 10 | -10/+750 |
2015-02-19 | Fix incorrect locale mapping in config.py on OSX | Eric Fiselier | 1 | -1/+1 |
2015-02-19 | Move to using -fdiagnostics-color=always on both GCC and Clang | Eric Fiselier | 1 | -9/+1 |
2015-02-19 | Make basic_streambuf::xsputn write characters in chunks whenever possible, in... | Marshall Clow | 1 | -5/+16 |
2015-02-19 | Mark more tuple tests as unsupported in C++98 && C++03 | Eric Fiselier | 2 | -0/+4 |
2015-02-19 | [libcxx] Mark most tuple tests UNSUPPORTED for c++03 and c++98. | Eric Fiselier | 52 | -12/+103 |
2015-02-18 | Remove several unused forward declarations. Fixes PR22605. | Marshall Clow | 3 | -13/+1 |
2015-02-18 | Move the default template arguments into the forward declarations for the con... | Marshall Clow | 2 | -4/+4 |
2015-02-18 | [libcxx] Tired of colorless compile errors? Enable color diagnostics today! | Eric Fiselier | 2 | -0/+30 |
2015-02-18 | Move the default template arguments into the forward declarations for the con... | Marshall Clow | 3 | -5/+6 |
2015-02-18 | Enable testing with _LIBCPP_DEBUG and fix bad assertions in string_view. | Eric Fiselier | 3 | -2/+21 |
2015-02-18 | [libc++] Fix PR20084 - std::is_function<void() const> failed. | Eric Fiselier | 2 | -15/+54 |
2015-02-17 | [libcxx] Add <experimental/ratio> | Eric Fiselier | 11 | -0/+481 |
2015-02-15 | Implement C++14's sized deallocation functions, since there are no longer imp... | Larisse Voufo | 2 | -1/+39 |
2015-02-13 | Handle function name conflicts in _LIBCPP_MSVCRT mode | Saleem Abdulrasool | 8 | -0/+28 |
2015-02-13 | cctype: tweak inclusions for _LIBCPP_MSVCRT case | Saleem Abdulrasool | 1 | -0/+1 |
2015-02-13 | Rooting out more undefined behavior in char_traits. | Marshall Clow | 17 | -8/+32 |
2015-02-13 | Appease buildbots | Jonathan Roelofs | 1 | -2/+2 |
2015-02-13 | Modularize TargetInfo discovery in the lit config | Jonathan Roelofs | 4 | -29/+98 |
2015-02-13 | Fix error checking in get_temp_file_name(). | Dan Albert | 1 | -4/+7 |
2015-02-12 | Move the test for zero-length into the char_traits (from string_view). Add te... | Marshall Clow | 6 | -3/+7 |
2015-02-12 | Fixed a problem that UBSAN found, where we were calling memcmp(null, p, 0) - ... | Marshall Clow | 1 | -1/+1 |
2015-02-12 | Remove undefined behavior from test; specifically, compare(NULL, XXX, 0) | Marshall Clow | 1 | -1/+1 |
2015-02-12 | Remove undefined behavior from test; specifically, compare(NULL, XXX, 0). Tha... | Marshall Clow | 1 | -2/+1 |
2015-02-11 | Change some template parameter names from _C and _N to _Cont and _Sz. No func... | Marshall Clow | 1 | -14/+14 |
2015-02-11 | Need to wrap a bit in an ifdef, since there are no initializer_lists in C++03 | Marshall Clow | 1 | -0/+2 |
2015-02-11 | Fix PR 22541: When values are equal, minmax should return the rightmost one i... | Marshall Clow | 2 | -6/+41 |
2015-02-11 | Update double_include.sh.cpp for new headers. | Eric Fiselier | 1 | -0/+2 |
2015-02-11 | libc++ tests: wait_until.pass test sporadically fails (bug 21998) | Eric Fiselier | 2 | -194/+258 |
2015-02-11 | Make convert_to_integral.pass.cpp more platform generic. | Eric Fiselier | 1 | -3/+5 |
2015-02-11 | Remove default definition for libcxx_obj_dir because it doesn't make sense | Eric Fiselier | 1 | -6/+6 |
2015-02-10 | Make ABI header not found a warning, not an error. | Dan Albert | 1 | -1/+1 |
2015-02-10 | Add pragma system header to some experimental headers and add newlines to files. | Eric Fiselier | 7 | -4/+23 |
2015-02-10 | Fix more issues exposed by -pedantic-errors in c++03 mode | Eric Fiselier | 29 | -28/+30 |
2015-02-10 | Remove use of zero length arrays in tests. Get tests passing with -pedantic-e... | Eric Fiselier | 8 | -228/+58 |
2015-02-10 | [libcxx] Fix PR 22468 - std::function<void()> does not accept non-void-return... | Eric Fiselier | 8 | -6/+169 |
2015-02-10 | [libcxx] Properly convert the count arguments to the *_n algorithms before use. | Eric Fiselier | 9 | -17/+219 |
2015-02-10 | Fix use of C++11 extensions in C++03 code. | Eric Fiselier | 3 | -10/+12 |