28c97e6ee1visibility-decoration.
Howard Hinnant
2010-09-23 16:27:36 +0000
aef07cbffdvisibility-decoration.
Howard Hinnant
2010-09-23 15:13:20 +0000
b9af2eae4avisibility-decoration.
Howard Hinnant
2010-09-22 18:02:38 +0000
828948148dvisibility-decoration.
Howard Hinnant
2010-09-22 16:48:34 +0000
68a8e90b3dvisibility-decoration.
Howard Hinnant
2010-09-22 15:29:08 +0000
8c6cbb24e8visibility-decoration.
Howard Hinnant
2010-09-22 14:16:26 +0000
42a63a781fvisibility-decoration.
Howard Hinnant
2010-09-21 22:55:27 +0000
422a53fd7avisibility-decoration.
Howard Hinnant
2010-09-21 21:28:23 +0000
333f50d30cvisibility-decoration.
Howard Hinnant
2010-09-21 20:16:37 +0000
b0be42b2cevisibility-decoration.
Howard Hinnant
2010-09-21 18:58:51 +0000
99acc5008bvisibility-decoration.
Howard Hinnant
2010-09-21 17:32:39 +0000
c0de2e48ffGetting started on a visibility-decoration sweep.
Howard Hinnant
2010-09-21 16:04:28 +0000
3975ebd4f5Tweak clang support for char16_t/char32_t
Howard Hinnant
2010-09-16 23:27:26 +0000
049734ed85Updated chart for weekly test results.
Howard Hinnant
2010-09-15 21:56:37 +0000
611581b853tests/lit: Split options into two groups, so we don't get driver warnings about unused linker arguments for compile only tests.
Daniel Dunbar
2010-09-15 04:31:58 +0000
26a43c25d7tests: Remove some stray cleanup code.
Daniel Dunbar
2010-09-15 04:18:37 +0000
7e0c57b203tests: Fixup lit config, which got garbled somehow...
Daniel Dunbar
2010-09-15 04:11:29 +0000
f5eadcd8d5tests: Sketch a lit config for running libc++ tests; currently expects libc++ to have been installed.
Daniel Dunbar
2010-09-15 03:57:04 +0000
45f5717812Cement ABI on clang for char16_t and char32_t. Also fixed some comments in <iterator>.
Howard Hinnant
2010-09-14 20:26:27 +0000
d2a9251977Experimenting with a new forward fomulation (kudos Daniel Kruegler), updated insert iterators to work better with pproxies, and doubled the speed of __next_prime.
Howard Hinnant
2010-09-13 01:43:27 +0000
a0f1dc9f46Fix another const bug in function. Thanks to Daniel Krugler for finding this and the previous bug.
Howard Hinnant
2010-09-11 15:33:21 +0000
fdc5a0f321Fix const bug in function
Howard Hinnant
2010-09-11 15:09:37 +0000
c7e4d82bc0<rdar://problem/8279559> [libstdcxx] use new linker options to make symbols non-weak
Nick Kledzik
2010-09-10 20:42:36 +0000
36cdf027d2I am experimenting with putting visibility-default attributes on all struct/classes in libc++. This checkin decorates only basic_string and vector as an experiment, and for review by those in this audience that might know more about visibilty than I do. If I get no negative feedback on this procedure I will begin to decorate the entire library in this way.
Howard Hinnant
2010-09-10 16:42:26 +0000
cb2deb2652Yonggang Luo fixed gcc version checking for type_traits support.
Howard Hinnant
2010-09-09 13:58:34 +0000
e764f0b648Updated by-chapter-summary with weekly test results, and fixed up some bad paths in some tests caused by aligning the test suite with N3126.
Howard Hinnant
2010-09-08 20:31:42 +0000
745d473ac1Hooked the following up to clang: is_class, is_enum, has_nothrow_copy_assign, has_trivial_destructor, has_virtual_destructor, is_pod. Implemented has_copy_assign.
Howard Hinnant
2010-09-08 17:55:32 +0000
27031115bfhas_nothrow_copy_assign hooked up to clang
Howard Hinnant
2010-09-08 16:39:18 +0000
99ad765261has_trivial_copy_assign hooked up to clang (without workarounds). Filed http://llvm.org/bugs/show_bug.cgi?id=8109 to take care of several types which don't work yet. If there is some reason we don't want to handle these types in the compiler, I can handle most of them in the library.
Howard Hinnant
2010-09-07 23:38:59 +0000
954b366317Made a stab at has_copy_constructor. Got it mostly working for g++-4.0, but only works for scalar types on clang. Ultimately this needs a compiler-supported is_constructible which clang is missing, and won't be able to use until it gets variadic templates.
Howard Hinnant
2010-09-07 23:11:28 +0000
aad0db393fhas_nothrow_copy_constructor hooked up to clang. Filed http://llvm.org/bugs/show_bug.cgi?id=8107 to take care of several types which don't work yet. If there is some reason we don't want to handle these types in the compiler, I can handle most of them in the library.
Howard Hinnant
2010-09-07 22:09:07 +0000
87eea6d801has_trivial_copy_constructor hooked up to clang. Filed http://llvm.org/bugs/show_bug.cgi?id=8105 to take care of void, arrays of incomplete bounds and complete bounds which don't work yet. If there is some reason we don't want to handle these types in the compiler, I can handle them in the library.
Howard Hinnant
2010-09-07 20:31:18 +0000
bb73d762b2Made a stab at has_default_constructor. Got it mostly working for g++-4.0, but only works for scalar types on clang. Ultimately this needs a compiler-supported is_constructible which clang is missing, and won't be able to use until it gets variadic templates.
Howard Hinnant
2010-09-07 17:47:31 +0000
6fd2e09b36has_nothrow_default_constructor hooked up to clang. Filed http://llvm.org/bugs/show_bug.cgi?id=8101 to take care of void, arrays of incomplete types, and classes with virtual destructors which don't work yet. If there is some reasons we don't want to handle these types in the compiler, I can handle them in the library.
Howard Hinnant
2010-09-07 17:15:17 +0000
2fd6d25bf1has_trivial_default_constructor hooked up to clang. Filed http://llvm.org/bugs/show_bug.cgi?id=8097 to take care of void and arrays of incomplete types which don't work yet. If there is some reasons we don't want to handle these types in the compiler, I can handle them in the library.
Howard Hinnant
2010-09-07 15:53:26 +0000
1387038988Working the type_traits area: Hooked up to clang's __is_union. Got has_trivial_copy_assign working.
Howard Hinnant
2010-09-06 19:10:31 +0000
f6547cbf61Updated current status.
Howard Hinnant
2010-09-05 17:31:48 +0000
3991b553dfsync with N3126
Howard Hinnant
2010-09-05 01:14:30 +0000
a2ccccce89sync with N3126
Howard Hinnant
2010-09-05 01:10:45 +0000
9c2683d77csync with N3126
Howard Hinnant
2010-09-05 01:06:34 +0000
e3e488eb61sync with N3126
Howard Hinnant
2010-09-05 00:57:20 +0000
b02310e487sync with N3126
Howard Hinnant
2010-09-05 00:49:04 +0000
bfd5530c06Fix whitespace
Howard Hinnant
2010-09-04 23:46:48 +0000
73d21a4f07Changed __config to react to all of clang's currently documented has_feature flags, and renamed _LIBCPP_MOVE to _LIBCPP_HAS_NO_RVALUE_REFERENCES to be more consistent with the rest of the libc++'s flags, and with clang's nomenclature.
Howard Hinnant
2010-09-04 23:28:19 +0000
04acacadcaFix typos, noticed by Clang.
Daniel Dunbar
2010-09-04 03:15:51 +0000
171a9a7cc3Configure libc++ to recognize and use inline namespaces for clang. Many, many thanks to Sebastian Redl for implementing it in clang, and to Daniel Dunbar for rattling my cage about it. This is huge for libc++. Thanks to you both\!
Howard Hinnant
2010-09-03 23:03:25 +0000
e6e4d01553[futures.atomic_future] and notify_all_at_thread_exit. This completes the header <future> and all of Chapter 30 (for C++0x enabled compilers).
Howard Hinnant
2010-09-03 21:46:37 +0000
99be8237db[futures.shared_future]
Howard Hinnant
2010-09-03 18:39:25 +0000
ae153b9855Updated for weekly test results.
Howard Hinnant
2010-09-01 20:33:41 +0000
54da338f59[futures.task] and [futures.async]. Requires variadics and rvalue-ref support.
Howard Hinnant
2010-08-30 18:46:21 +0000
7158e5c38b[futures.unique_future]
Howard Hinnant
2010-08-29 14:20:30 +0000
f39daa8e5a[futures.promise]. Depends on rvalue-ref support to work 100%.
Howard Hinnant
2010-08-28 21:01:06 +0000
47499b162afuture continues ...
Howard Hinnant
2010-08-27 20:10:19 +0000
98ccdeca3bUpdated for weekly test results
Howard Hinnant
2010-08-25 19:45:31 +0000
a652172d86Getting started on <future>
Howard Hinnant
2010-08-25 17:32:05 +0000
ef0036c5aaCorrected some int -> char narrowing conversions
Howard Hinnant
2010-08-23 21:41:03 +0000
8e705bb5adAccidentally changed a data file during the whitespace cleanup
Howard Hinnant
2010-08-23 21:23:21 +0000
d510977c4dRemove tabs
Howard Hinnant
2010-08-22 13:53:14 +0000
d2bb032075Fixing whitespace problems
Howard Hinnant
2010-08-22 01:04:38 +0000
c52f43e72dFixing whitespace problems
Howard Hinnant
2010-08-22 00:59:46 +0000
f11ea14460Fixing whitespace problems
Howard Hinnant
2010-08-22 00:50:25 +0000
6e0a1f458eFixing whitespace problems
Howard Hinnant
2010-08-22 00:47:54 +0000
bbd8086ee3Fixing whitespace problems
Howard Hinnant
2010-08-22 00:45:01 +0000
0e20cae1a5Fixing whitespace problems
Howard Hinnant
2010-08-22 00:42:21 +0000
22a74dcf50Fixing whitespace problems
Howard Hinnant
2010-08-22 00:39:25 +0000
cf6dcc35e1Fixing whitespace problems
Howard Hinnant
2010-08-22 00:31:12 +0000
712522cfd8Fixing whitespace problems
Howard Hinnant
2010-08-22 00:29:01 +0000
256813f4e7Fixing whitespace problems
Howard Hinnant
2010-08-22 00:26:48 +0000
74231bfbc0Fixing whitespace problems
Howard Hinnant
2010-08-22 00:22:24 +0000
aa20444a4fFixing whitespace problems
Howard Hinnant
2010-08-22 00:20:12 +0000
6046aced82Fixing whitespace problems
Howard Hinnant
2010-08-22 00:15:28 +0000
eb564e76ccFixing whitespace problems
Howard Hinnant
2010-08-22 00:08:10 +0000
16e6e1d72fFixing whitespace problems
Howard Hinnant
2010-08-22 00:03:27 +0000
324bb03bb9Fixing whitespace problems
Howard Hinnant
2010-08-22 00:02:43 +0000
92172b891fUS 108, N3109
Howard Hinnant
2010-08-21 21:14:53 +0000
a785e4e469DE 23
Howard Hinnant
2010-08-21 21:01:59 +0000
7a2523b201US 117
Howard Hinnant
2010-08-21 20:58:44 +0000
98e5d97400US 122, N3106
Howard Hinnant
2010-08-21 20:10:01 +0000
725528086cInstalled allocator into std::function
Howard Hinnant
2010-08-20 19:36:46 +0000
e00e030f58JP 3 & JP 4
Howard Hinnant
2010-08-19 19:20:10 +0000
e3263b4dbeGB 85, GB 87
Howard Hinnant
2010-08-19 19:15:54 +0000
2794e6cca5DE 19
Howard Hinnant
2010-08-19 19:09:08 +0000
3c1ffbabc1US 98, US 99
Howard Hinnant
2010-08-19 18:59:38 +0000
e92c3d74ceUS 107
Howard Hinnant
2010-08-19 18:39:17 +0000
ba590bdc97LWG 1278
Howard Hinnant
2010-08-19 17:40:04 +0000
4a23e1e060Updated by-chapter chart with weekly test results. Also did some prototyping on result_of, but if-def'd out the prototyped part (which the LWG may or may not accept)
Howard Hinnant
2010-08-18 18:52:04 +0000
a8d7759708[re.alg.replace]. This finishes all of <regex>. That being said, <regex> is exceptionally difficult to thoroughly test. If anyone has the ability to test this, combined with the interest to do so, now would be a good time. :-)
Howard Hinnant
2010-08-18 00:13:08 +0000
262b779f1d[re.tokiter]
Howard Hinnant
2010-08-17 20:42:03 +0000
a712c72499[re.regiter]
Howard Hinnant
2010-08-16 20:21:16 +0000
aa78f9cdb3[re.alg.match]
Howard Hinnant
2010-08-14 19:58:44 +0000
27405f91a8Everything under [re.results]
Howard Hinnant
2010-08-14 18:14:02 +0000
7026a17a48Everything under [re.regex]
Howard Hinnant
2010-08-13 18:11:23 +0000
878465043fFilling out regex tests...
Howard Hinnant
2010-08-12 21:14:20 +0000
0e353f2363Didn't mean to change lib/buildit on the last check in
Howard Hinnant
2010-08-11 18:11:36 +0000
d444470d6cnow works with -fno-exceptions and -fno-rtti
Howard Hinnant
2010-08-11 17:04:31 +0000
81e68580b2#ifdef around Solaris/Linux/Darwin-specific error codes and replace them with their BSD equivalents if they are not available.
David Chisnall
2010-08-11 16:52:41 +0000
3e13d4f9c4Include sys/endian.h on FreeBSD and use that to detect the byte order.
David Chisnall
2010-08-11 16:27:20 +0000
b271eff4c6Modified the definition of std::foward to address National Body Comment US 90
Howard Hinnant
2010-08-11 14:05:55 +0000