public inbox for libstdc++@gcc.gnu.org
 help / color / mirror / Atom feed
[committed] libstdc++: Fix -Wunused-parameter in <experimental/internet>
 2023-08-17 20:31 UTC 

[committed] libstdc++: Make __cmp_cat::__unseq constructor consteval
 2023-08-17 20:31 UTC 

[committed] libstdc++: Simplify chrono::__units_suffix using std::format
 2023-08-17 20:31 UTC 

[committed] libstdc++: Rework std::format support for wchar_t
 2023-08-17 20:31 UTC 

[committed] libstdc++: Implement std::to_string in terms of std::format (P2587R3)
 2023-08-17 20:31 UTC 

[committed] libstdc++: Optimize std::to_string using std::string::resize_and_overwrite
 2023-08-17 20:30 UTC 

[committed] libstdc++: Define std::string::resize_and_overwrite for C++11 and COW string
 2023-08-17 20:30 UTC 

[PATCH] sso-string@gnu-versioned-namespace [PR83077]
 2023-08-17 19:44 UTC  (11+ messages)

[committed] libstdc++: Fix std::format("{:F}", inf) to use uppercase
 2023-08-17 12:21 UTC 

[committed] libstdc++: Regenerate Makefile.in
 2023-08-17 12:20 UTC 

[committed] libstdc++: Disable PCH for tests that rely on include order
 2023-08-17  7:46 UTC 

[committed] libstdc++: Fix testsuite no_pch directive
 2023-08-17  7:45 UTC 

[PATCH] libstdc++: fix memory clobbering in std::vector [PR110879]
 2023-08-17  7:43 UTC  (3+ messages)

[committed] libstdc++: Fix std::basic_string::resize_and_overwrite
 2023-08-16 19:04 UTC 

[committed] libstdc++: Update __cplusplus value for C++23 in version.def
 2023-08-16 19:03 UTC 

[PATCH 1/2] libstdc++: Convert _RangeAdaptorClosure into a CRTP class [PR108827]
 2023-08-16 17:32 UTC  (4+ messages)

[PATCH] libstdc++: Make __max_size_type and __max_diff_type structural
 2023-08-16 17:30 UTC  (3+ messages)

[PATCH] libstdc++: Implement P2770R0 changes to join_view / join_with_view
 2023-08-16 17:28 UTC  (3+ messages)

[PATCH] libstdc++ Add cstdarg to freestanding
 2023-08-16 16:50 UTC  (4+ messages)

[committed] libstdc++: Fix comment naming upstream PSTL test file
 2023-08-16 16:23 UTC 

[PATCH v2 1/2] libstdc++: Implement more maintainable <version> header
 2023-08-16 12:47 UTC  (6+ messages)
` [PATCH v2 2/2] libstdc++: Replace all manual FTM definitions and use

[PATCH] Fix for bug libstdc++/110860
 2023-08-14 17:15 UTC  (2+ messages)

[committed] libstdc++: Fix std::format_to_n return value [PR110990]
 2023-08-11 22:37 UTC 

[committed] libstdc++: Implement C++20 std::chrono::parse [PR104167]
 2023-08-11 18:58 UTC 

[committed] libstdc++: Do not call log10(0.0) in std::format [PR110860]
 2023-08-11 17:21 UTC 

[committed] libstdc++: Handle invalid values in std::chrono pretty printers
 2023-08-11 14:03 UTC 

[committed] libstdc++: Use alias template for iterator_category [PR110970]
 2023-08-11 14:02 UTC  (3+ messages)
  ` [committed] libstdc++: Revert accidentally committed change to bits/stl_iterator.h

[committed] libstdc++: Fix out-of-bounds read in format string "{:{}." [PR110974]
 2023-08-10 22:40 UTC 

[committed] libstdc++: Fix std::format for localized floats [PR110968]
 2023-08-10 22:33 UTC 

[committed] libstdc++: Fix constexpr functions to conform to older standards
 2023-08-09 14:22 UTC 

[committed] libstdc++: Fix a -Wsign-compare warning in std::list
 2023-08-09 14:22 UTC 

[committed] libstdc++: Suppress clang -Wc99-extensions warnings in <complex>
 2023-08-09 14:22 UTC 

[committed] libstdc++: Fix some -Wmismatched-tags warnings
 2023-08-09 14:22 UTC 

[committed] libstdc++: Fix some -Wunused-parameter warnings
 2023-08-09 14:21 UTC 

[committed] libstdc++: Explicitly default some copy ctors and assignments
 2023-08-09 14:21 UTC 

[committed] libstdc++: Minor fixes for some warnings in <format>
 2023-08-09 14:21 UTC 

[RFA/C] Reimplementation of std::call_once
 2023-08-09 14:10 UTC  (6+ messages)

[PATCH v7 0/6] c++, libstdc++: get std::is_object to dispatch to new built-in traits
 2023-08-08 20:35 UTC  (15+ messages)
` [PATCH v8 "
  ` [PATCH v8 2/6] libstdc++: use new built-in trait __is_reference for std::is_reference
  ` [PATCH v8 4/6] libstdc++: use new built-in trait __is_function for std::is_function
  ` [PATCH v10 0/5] c++, libstdc++: Make std::is_object dispatch to new built-in traits
    ` [PATCH v10 1/5] c++: Implement __is_reference built-in trait
    ` [PATCH v10 2/5] libstdc++: Use new built-in trait __is_reference for std::is_reference
    ` [PATCH v10 3/5] c++: Implement __is_function built-in trait
    ` [PATCH v10 4/5] libstdc++: Use new built-in trait __is_function for std::is_function
    ` [PATCH v10 5/5] libstdc++: Make std::is_object dispatch to new built-in traits

[PATCH 1/2] c++, libstdc++: implement __is_arithmetic built-in trait
 2023-08-08 20:33 UTC  (29+ messages)
` [PATCH v2 1/3] c++, libstdc++: Implement "
  ` [PATCH v2 2/3] libstdc++: Optimize is_arithmetic performance by __is_arithmetic built-in
  ` [PATCH v2 3/3] libstdc++: Optimize is_fundamental "
  ` [PATCH v3 1/3] c++, libstdc++: Implement __is_arithmetic built-in trait
    ` [PATCH v3 2/3] libstdc++: Optimize is_arithmetic performance by __is_arithmetic built-in
    ` [PATCH v3 3/3] libstdc++: Optimize is_fundamental "
    ` [PATCH v4 1/4] c++, libstdc++: Implement __is_arithmetic built-in trait
      ` [PATCH v4 2/4] libstdc++: Optimize is_arithmetic trait performance
      ` [PATCH v4 3/4] libstdc++: Optimize is_fundamental "
      ` [PATCH v4 4/4] libstdc++: Optimize is_compound "

[PATCH] libstdc++: Define _GLIBCXX_HAS_BUILTIN_TRAIT
 2023-08-08 20:23 UTC  (10+ messages)
` [PATCH v2] "
  ` [PATCH v3 1/2] "
    ` [PATCH v3 2/2] libstdc++: Use _GLIBCXX_HAS_BUILTIN_TRAIT

[PATCH] libstdc++: Use __bool_constant entirely
 2023-08-08 20:07 UTC  (2+ messages)

GCC support for extensions from later standards
 2023-08-08 16:33 UTC  (10+ messages)

[committed] i386: Fix grammar typo in diagnostic
 2023-08-07 21:22 UTC  (2+ messages)

[committed] libstdc++: Fix incorrect use of abs and log10 in std::format [PR110860]
 2023-08-07 21:14 UTC 

[committed] libstdc++: Constrain __format::_Iter_sink for contiguous iterators [PR110917]
 2023-08-07 21:14 UTC 

[committed] libstdc++: Fix past-the-end increment in std::format [PR110862]
 2023-08-07 21:12 UTC 

[PATCH 0/2] Unify and deduplicate FTM code
 2023-08-07 17:38 UTC  (8+ messages)
` [PATCH 1/2] libstdc++: Implement more maintainable <version> header
` [PATCH 2/2] libstdc++: Replace all manual FTM definitions and use

[committed] Fix several preprocessor directives
 2023-08-07 10:46 UTC  (2+ messages)

[committed][_GLIBCXX_INLINE_VERSION] Add __cxa_call_terminate symbol export
 2023-08-06 12:34 UTC 

[committed] libstdc++: Fix std::format alternate form for floating-point [PR108046]
 2023-07-27 15:03 UTC 

[committed] libstdc++: Avoid bogus overflow warnings in std::vector<bool> [PR110807]
 2023-07-26 18:11 UTC  (2+ messages)
` [committed] libstdc++: Require C++11 for 23_containers/vector/bool/110807.cc [PR110807]

[committed] libstdc++: Add deprecated attribute to std::random_shuffle declarations
 2023-07-26 16:02 UTC 

[PATCH] libstdc++: Add missing constexpr specifier and function overloads
 2023-07-24 20:15 UTC 

[PATCH] libstdc++: Reuse double overload of __convert_to_v if possible
 2023-07-24 20:05 UTC 

[committed] libstdc++; Do not use strtold for hppa-hpux [PR110653]
 2023-07-24 20:04 UTC 

[PATCH][Hashtable] Performance optimization through use of insertion hint
 2023-07-24 11:02 UTC 

[committed] libstdc++: Do not define inaccurate from_chars for _Float128 [PR110077]
 2023-07-19 22:43 UTC 

[committed] libstdc++: Check for std::ratio in arithmetic and comparisons [PR110593]
 2023-07-19 22:43 UTC 

[PATCH] libstdc++: Fix preprocessor conditions for std::from_chars [PR109921]
 2023-07-19 20:43 UTC 

[committed] libstdc++: Fix formatting of negative chrono::hh_mm_ss
 2023-07-19 15:52 UTC 

[committed] libstdc++: Fix locale-specific duration formatting [PR110719]
 2023-07-19 15:51 UTC 

New Video from Harvey Havel
 2023-07-19 15:22 UTC 

[committed] libstdc++: Avoid warning in std::format
 2023-07-19 11:38 UTC 

[committed] libstdc++: Implement correct locale-specific chrono formatting [PR110719]
 2023-07-19 11:37 UTC 

[committed] libstdc++: Check for multiple modifiers in chrono format string [PR110708]
 2023-07-19 10:11 UTC 

[committed 1/3] libstdc++: Check autoconf macros for strtof and strtold [PR110653]
 2023-07-19 10:05 UTC  (3+ messages)
` [committed 2/3] libstdc++: Define std::stof fallback in terms of std::stod [PR110653]
` [committed 3/3] libstdc++: Enable tests for std::stoi etc. unconditionally [PR110653]

__lower_bound improvement for arithmetical types(2)
 2023-07-17  9:32 UTC 

[PATCH 1/2] c++, libstdc++: implement __is_pointer built-in trait
 2023-07-14 19:55 UTC  (24+ messages)
` [PATCH v2 "
  ` [PATCH v2 2/2] libstdc++: use new built-in trait __is_pointer
        ` [PATCH v3 1/2] c++, libstdc++: Implement __is_pointer built-in trait
          ` [PATCH v3 2/2] libstdc++: Use new built-in trait __is_pointer
          ` [PATCH v4 1/2] c++, libstdc++: Implement __is_pointer built-in trait
            ` [PATCH v4 2/2] libstdc++: Use new built-in trait __is_pointer
            ` [PATCH v5 1/2] c++, libstdc++: Implement __is_pointer built-in trait
              ` [PATCH v5 2/2] libstdc++: Use new built-in trait __is_pointer
                ` [PATCH v6 1/2] c++, libstdc++: Implement __is_pointer built-in trait
                  ` [PATCH v6 2/2] libstdc++: Use new built-in trait __is_pointer

[committed] libstdc++: std::stoi etc. do not need C99 <stdlib.h> support [PR110653]
 2023-07-13 16:59 UTC 

[PATCH 1/2] c++, libstdc++: implement __is_signed built-in trait
 2023-07-13  1:43 UTC  (7+ messages)
` [PATCH 2/2] libstdc++: use new built-in trait __is_signed
    ` [PATCH v2 1/2] c++, libstdc++: Implement __is_signed built-in trait
      ` [PATCH v2 2/2] libstdc++: Use new built-in trait __is_signed

[committed] libstdc++: Check conversion from filesystem::path to wide strings [PR95048]
 2023-07-12 20:04 UTC 

[PATCH 1/2] c++, libstdc++: implement __is_scalar built-in trait
 2023-07-12 19:35 UTC  (9+ messages)
` [PATCH v2 "
  ` [PATCH v2 2/2] libstdc++: use new built-in trait __is_scalar for std::is_scalar

[PATCH 1/2] c++: implement __remove_pointer built-in trait
 2023-07-12 10:20 UTC  (4+ messages)
` [PATCH v2 "
  ` [PATCH v2 2/2] libstdc++: use new built-in trait __remove_pointer

[PATCH v3 1/2] c++: implement __is_unsigned built-in trait
 2023-07-12 10:04 UTC  (4+ messages)
` [PATCH v4 "
  ` [PATCH v4 2/2] libstdc++: use new built-in trait __is_unsigned

[PATCH] libstdc++: use __is_enum built-in trait
 2023-07-12  9:51 UTC  (3+ messages)
` [PATCH v2] "

[PATCH] libstdc++: Use RAII in std::vector::_M_realloc_insert
 2023-07-10 12:53 UTC  (5+ messages)

page:  |  | latest

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).