306553d2b0Merging r195136: ------------------------------------------------------------------------ r195136 | marshall | 2013-11-19 10:05:03 -0800 (Tue, 19 Nov 2013) | 1 line
Bill Wendling
2013-11-25 07:41:30 +0000
37d0212c57Compiling libcxx with gcc 4.6.4 (MingW) produces these errors:
Yaron Keren
2013-11-22 09:22:12 +0000
f01e998923Merging r195143: ------------------------------------------------------------------------ r195143 | marshall | 2013-11-19 11:14:27 -0800 (Tue, 19 Nov 2013) | 1 line
Bill Wendling
2013-11-20 06:40:42 +0000
ffb55273a5Creating release candidate rc1 from release_34 branch
Bill Wendling
2013-11-20 05:00:44 +0000
7029612131Creating release directory for release_34.
Bill Wendling
2013-11-20 05:00:39 +0000
016d4e847aPatch by Xing Xue to improve libc++ support for AIX
Marshall Clow
2013-11-19 19:16:03 +0000
16c76a2107Fix a test that I broke over the weekend
Marshall Clow
2013-11-19 19:14:27 +0000
2ccffefaffPatch by Bruce Mitchener. Change all references to EMSCRIPTEN to __EMSCRIPTEN__. If you're not using the PP symbol EMSCRIPTEN, then you should see no functionality change.
Marshall Clow
2013-11-19 18:05:03 +0000
ea97ae3eedCreating release_34 branch
Bill Wendling
2013-11-19 02:57:35 +0000
81241a9440G M suggestion: conditionally include files on _WIN32.
Yaron Keren
2013-11-18 21:30:19 +0000
15c04bedadThis patch implements snprintf_l function in a way similar to the other functions in src/support/win32/locale_win32.cpp and locale_win32.h, calling upon vsnprintf for which there is a MingW correct alternative.
Yaron Keren
2013-11-18 21:12:14 +0000
35080eae90Set the permissions for 'experimental' and its context to the correct values.
Bill Wendling
2013-11-18 07:01:16 +0000
1823bea43aFix-it suggestion for fixing min or max defines on Windows.
Yaron Keren
2013-11-15 23:41:01 +0000
c26c385592Windows.h is not required.
Yaron Keren
2013-11-15 22:54:15 +0000
0cdbe60481Move <optional> into include/experimental, and into the std::experimental namespace, since it's not part of C++14, but of an upcoming TS
Marshall Clow
2013-11-15 22:42:10 +0000
ec5714f27aAdd the CMakeLists.txt that was missed in r194825
Justin Bogner
2013-11-15 18:34:43 +0000
c4962b3f44Justin Bogner: This makes the headers available in the build directory, making it easier to use freshly-built clang with freshly-built libc++.
Howard Hinnant
2013-11-15 17:18:57 +0000
65173fee34This is a followup to r194536, which changed the pair copy constructor to be trivial in C++03, thus making it trivial in both C++03 and C++11.
Howard Hinnant
2013-11-14 22:52:25 +0000
0c6a583e2aFixed bug in quoted strings implementation. Added test to be sure. Thanks to Peter Sommerlad for the report (and suggested fix)
Marshall Clow
2013-11-14 20:01:38 +0000
6b7c2aeb00Move <dynarray> into include/experimental, and into the std::experimental namespace, since it's not part of C++14, but of an upcoming TS
Marshall Clow
2013-11-13 22:44:48 +0000
525a0fb982Add directory for TSes, etc
Marshall Clow
2013-11-13 18:25:56 +0000
3f81e9eebaThis fixes a very subtle ABI problem concerning the copy constructor of pair, and a couple of pair-like implementation detail types. The C++98/03 and 11 standards all specify that the copy constructor of pair<int, int> is trivial. However as libc++ tracked the draft C++11 standard over the years, this copy constructor became non-trivial, and then just recently was corrected back to trivial for C++11.
Howard Hinnant
2013-11-13 00:39:22 +0000
a46a0ad9e5Patch from Bruce Mitchener; fixes two typos in comments. No functionality change. PR17843
Marshall Clow
2013-11-11 23:27:19 +0000
29250b7ec8Tell libc++abi whether or not libc++ has declared bad_array_length.
Howard Hinnant
2013-11-07 17:15:51 +0000
fe2a561fcaMore duplicate code removal in <locale>. Hoist common parsing code into two templates: num_get::__do_get_signed and num_get::__do_get_unsigned, and make the do_get routines call them. No functionality change.
Marshall Clow
2013-11-07 01:00:50 +0000
ecc8d7b334Fix an off-by-one error in basic_string::__grow_by, where it would incorrectly throw length_error (instead of bad_alloc) when attempting to resize the string to 'max_size()'. Add tests for resizing to max_size +/-1
Marshall Clow
2013-11-06 14:24:38 +0000
5ffe591d55Refactor floating point code for num_get::do_get into a template. No functionality change
Marshall Clow
2013-11-05 14:28:52 +0000
3b3108ec59Better inline marking for __does_policy_contain. Thanks to Chongyu Zhu for the catch
Marshall Clow
2013-11-03 22:06:53 +0000
d8a8f57387Mark __does_policy_contain as 'inline'. Thanks to Chongyu Zhu for the catch
Marshall Clow
2013-11-03 20:07:47 +0000
ad2a600c2aFix LWG Issue 2078. Make std::async(policy,...) try multiple policies until one succeeds.
Marshall Clow
2013-11-03 15:43:35 +0000
76a8670ce4LWG issue 2341; Make the two variants of basic_ostream::seekp and basic_istream::seekg behave consistently; update tests to make sure
Marshall Clow
2013-10-31 22:20:45 +0000
4259337da2Update status of issues
Marshall Clow
2013-10-23 05:59:18 +0000
65ccddb341Mark seed_seq default constructor and size() as noexcept. This is implied, but not required by LWG issue 2180
Marshall Clow
2013-10-23 05:56:47 +0000
0f7afe7b8ePatch by GM: Turn off 'deprecated' warnings when building with MSVC, and add '-Werror=return-type' to catch funtions that aren't returning what they should.
Marshall Clow
2013-10-21 15:56:35 +0000
33ae2337e2Patch by GM: apparently '__value' (two underscores) is a special name in Visual Studio, so rename the private method in <regex> with that name. GM's patch used '___value' (three underscores), but I changed that to '__regex_traits_value' because I've been burned in the past by identifiers that appear identical but are not.
Marshall Clow
2013-10-21 15:43:25 +0000
a36451371cPatch from GM: locale.cpp; make implicit conversions to bool explicit, fix some 'unknown pragma' warnings when compiling under MSVC, and don't use the __sso_allocator under windows, b/c MSVC doesn't support aligned-by value parameters
Marshall Clow
2013-10-21 15:07:28 +0000
8a43fca8edPatch by GM: Making implicit conversion to bool explicit in <ios> and <__locale>
Marshall Clow
2013-10-21 14:41:05 +0000
0ac5cce17cPatch by GM: Adding MSVC support to __bit_reference
Marshall Clow
2013-10-21 14:29:37 +0000
aa87532feeAvoid using the name 'bzero' for an enumerator in global scope. <strings.h> might declare this as a function.
Richard Smith
2013-10-21 04:59:37 +0000
71b52152a9r192075 broke the buildbot at
Howard Hinnant
2013-10-14 18:02:02 +0000
9de3d4cab3Patch from GM to make more implicit bools explicit since we can't stop MSVC warning about this in headers and to warn is the MSVC default. No functionality change.
Marshall Clow
2013-10-13 01:02:45 +0000
0f91166ef8Updated status of issues and features
Marshall Clow
2013-10-12 22:57:58 +0000
16f13a0b84Marked issue 2284 as complete
Marshall Clow
2013-10-07 03:26:42 +0000
3f433cdb8eApparently, I don't know the difference between 'left' and 'right'. Swap parameters named 'lhs' and 'rhs' so that they correctly refer to the 'left hand side' and 'right hand side' of comparisons. No functionality change. Thanks to Arthur O'Dwyer for pointing this out to me.
Marshall Clow
2013-10-07 02:37:18 +0000
4a0555a9d4Silence the unused function warning in exception.cpp.
Peter Collingbourne
2013-10-06 22:13:24 +0000
ece95914acImplement std::exception_ptr under libsupc++.
Peter Collingbourne
2013-10-06 22:13:21 +0000
d0d308f54bMake it possible to link against libstdc++ as well as libsupc++ with CMake.
Peter Collingbourne
2013-10-06 22:13:19 +0000
40455c65daEliminate more symbols multiply defined between libsupc++ and libc++.
Peter Collingbourne
2013-10-06 22:13:16 +0000
ae2b90b86dG M: 1. It changes the temp file handling to use the template and the current directory for windows, matching how it works on other platforms. 2. It re-enables the temp file handling for mingw that regressed.
Howard Hinnant
2013-10-06 21:14:05 +0000
e064055942G M: Rename local variable from __except to avoid MSVC keyword clash.
Howard Hinnant
2013-10-06 21:00:29 +0000
35a98a00b3Use _LIBCPP_NEW_DELETE_VIS instead of LIBCPP_FUNC_VIS in src/new.cpp.
Howard Hinnant
2013-10-06 20:53:24 +0000
2bcdf5e9a0Yaron Keren: Add missing comment.
Howard Hinnant
2013-10-06 19:48:40 +0000
69bf761909Updated status post-Chicago
Marshall Clow
2013-10-06 07:10:55 +0000
2faa02fc3dAdd tests making sure that optional<T>s can be compared at compile time; this functionality was enabled by N3789
Marshall Clow
2013-10-05 23:29:16 +0000
320c80fecfImplement literal suffixes for compled
Marshall Clow
2013-10-05 21:19:49 +0000
8d9dd7a968Mark namespaces for user defined literals as 'inline'
Marshall Clow
2013-10-05 21:18:32 +0000
1d927e38d1Implement LWG issue 2275 'forward_as_tuple should be constexpr'
Marshall Clow
2013-10-05 18:46:37 +0000
520dc52b4aG M: Remove unneeded warnings in buildit that are hindering porting.
Howard Hinnant
2013-10-05 00:13:31 +0000
adb73b1701G M: Attached is a patch for libcxx's cmake file.
Howard Hinnant
2013-10-05 00:07:35 +0000
5a8b5783f8G M: The attached patch is for libcxx's new.cpp and __config files. The patch's intent is to make new.cpp compile using MS's cl.exe compiler without changing the meaning of anything for any other compiler.
Howard Hinnant
2013-10-04 23:56:37 +0000
9844b6796bG M: A small patch to fix a couple of warnings in stdexcept.cpp for cl.exe which does not support #pragma visibility.
Howard Hinnant
2013-10-04 22:12:59 +0000
1e564246ecG M: Changes all references to "x inline" to "inline x" where x = _libcpp_always_inline or _libcpp_inline_visibility macros.
Howard Hinnant
2013-10-04 22:09:00 +0000
f677bc4165G M: Fix libcxx's detection of rtti disablement for g++.exe and cl.exe. When RTTI is NOT enabled, _LIBCPP_NO_RTTI is defined.
Howard Hinnant
2013-10-04 21:24:21 +0000
f7555069abG M: Provides the _LIBCPP_WARNING macro, to be used for MSVC only, since that compiler doesn't support #warning.
Howard Hinnant
2013-10-04 21:14:44 +0000
66a8fcecd9libc++abi no longer has a cxa_demangle.h header.
Peter Collingbourne
2013-10-03 22:58:36 +0000
8df0320334Re-add bad_cast and bad_typeid default ctor definitions under libsupc++.
Peter Collingbourne
2013-10-03 22:04:10 +0000
4c81b00f75Make it possible to run the test suite when built as part of LLVM.
Peter Collingbourne
2013-10-03 21:58:25 +0000
f7eb5738f6Explicitly specify -Wno-error if LIBCXX_ENABLE_WERROR is false.
Alexey Samsonov
2013-10-02 07:44:19 +0000
19e7862eb8Remove non-printable chars that snuck in back in July; thanks to Yaron Keren for the catch
Marshall Clow
2013-10-01 13:28:20 +0000
bd444af850Part 8 of LWG Issue 2210' unordered_set and unordered multiset; this got missed when I went on vacation
Marshall Clow
2013-09-30 21:33:51 +0000
ff7546e974SCARY/N2913 iterator support between the multi and non-multi versions of the associative and unordered containers. I beleive lack of support for this was accidentally recently introduced (by me) and this is fixing a regression. This time tests are put in to prevent such a regression in the future.
Howard Hinnant
2013-09-30 19:08:22 +0000
179fa78da3[CMake] Put libcxx-specific module directories to the front of CMAKE_MODULE_PATH.
Alexey Samsonov
2013-09-30 09:10:01 +0000
9738cafa4fImplement n3789; constexpr support in named function objects
Marshall Clow
2013-09-28 19:06:12 +0000
6db12cb037Add a set of macros for using the new '[[[deprecated]]' attribute. No code changes (yet)
Marshall Clow
2013-09-28 18:35:31 +0000
4af78bb10bFixed bad link for n3789; thanks to Chip Davis for the catch
Marshall Clow
2013-09-28 01:52:18 +0000
42389d214fUpdated my role
Marshall Clow
2013-09-28 01:25:55 +0000
cb55b18fa9Missed a change that didn't have an issue number 'GB 9'
Marshall Clow
2013-09-27 22:21:17 +0000
91008752edUpdated table with results from Chicago
Marshall Clow
2013-09-27 22:16:32 +0000
d1754fb3e9Make the guard for external ABI libraries include the guard for libsupc++ in typeinfo.cpp, bringing it into agreement with exception.cpp. This fixes link errors due to duplicate symbols from this translation unit.
Chandler Carruth
2013-09-25 20:01:44 +0000
fc910cb9a0Peter Collingbourne: Fix warnings when compiling with -DNDEBUG.
Howard Hinnant
2013-09-21 21:26:37 +0000
de589f2f8fPeter Collingbourne: If a pointer is passed as the third argument of the (iterator, iterator, allocator) constructor with the intention of it being implicitly converted to the allocator type, it is possible for overload resolution to favour the (iterator, iterator, enable_if) constructor. Eliminate this possibility by moving the enable_if to one of the existing arguments and removing the third argument.
Howard Hinnant
2013-09-21 21:13:54 +0000
dcc6a0bc44Apply LWG 2048. It is amazing to me that this actually works, but the existing tests confirm that it does. c++1y status page now showing libc++ is complete for c++1y modulo dynarray issues.
Howard Hinnant
2013-09-21 19:25:37 +0000
0836f87fb9Apply LWG 2021. This is only a documentation change. Also bringing c++1y status page up to date.
Howard Hinnant
2013-09-21 18:17:23 +0000
23e470c348Apply LWG 2017. This is a only a documentation change.
Howard Hinnant
2013-09-21 17:58:58 +0000
ba898e4208N3659: Shared locking in C++ Revision 2, c++1y only
Howard Hinnant
2013-09-21 01:49:28 +0000
8127758024David Chisnall: macro protect 'test' in __has_pointer_type_imp.
Howard Hinnant
2013-09-21 01:45:05 +0000
ef5aa93b9cG M: Restore the ability for libcxx to compile again on mingw 64.
Howard Hinnant
2013-09-17 01:34:47 +0000
cd942f1840Marshall Clow: LWG Issue 2056: future_errc enums start with value 0 (invalid value for broken_promise).
Howard Hinnant
2013-09-14 18:20:10 +0000