public inbox for libstdc++@gcc.gnu.org
 help / color / mirror / Atom feed
[PATCH v13 01/26] c++: Implement __is_const built-in trait
 2024-05-07 18:46 UTC  (144+ messages)
` [PATCH v14 00/26] Optimize more type traits
  ` [PATCH v14 01/26] c++: Implement __is_const built-in trait
  ` [PATCH v14 03/26] c++: Implement __is_volatile "
  ` [PATCH v14 05/26] c++: Implement __is_pointer "
  ` [PATCH v14 07/26] c++: Implement __is_unbounded_array "
  ` [PATCH v14 09/26] c++: Implement __add_pointer "
  ` [PATCH v14 11/26] c++: Implement __remove_extent "
  ` [PATCH v14 13/26] c++: Implement __remove_all_extents "
  ` [PATCH v14 15/26] c++: Implement __add_lvalue_reference "
  ` [PATCH v14 17/26] c++: Implement __add_rvalue_reference "
  ` [PATCH v14 19/26] c++: Implement __decay "
  ` [PATCH v14 21/26] c++: Implement __rank "
              ` Trait built-in naming convention
  ` [PATCH v14 25/26] c++: Implement __is_nothrow_invocable built-in trait
  ` [PATCH v16 00/26] Optimize more type traits
    ` [PATCH v16 01/26] c++: Implement __builtin_is_const trait
    ` [PATCH v16 02/26] libstdc++: Optimize std::is_const compilation performance
    ` [PATCH v16 03/26] c++: Implement __builtin_is_volatile trait
    ` [PATCH v16 04/26] libstdc++: Optimize std::is_volatile compilation performance
    ` [PATCH v16 05/26] c++: Implement __builtin_is_pointer trait
    ` [PATCH v16 06/26] libstdc++: Optimize std::is_pointer compilation performance
    ` [PATCH v16 07/26] c++: Implement __builtin_is_unbounded_array trait
    ` [PATCH v16 08/26] libstdc++: Optimize std::is_unbounded_array compilation performance
    ` [PATCH v16 09/26] c++: Implement __builtin_add_pointer trait
    ` [PATCH v16 10/26] libstdc++: Optimize std::add_pointer compilation performance
    ` [PATCH v16 11/26] c++: Implement __builtin_remove_extent trait
    ` [PATCH v16 12/26] libstdc++: Optimize std::remove_extent compilation performance
    ` [PATCH v16 13/26] c++: Implement __builtin_remove_all_extents trait
    ` [PATCH v16 14/26] libstdc++: Optimize std::remove_all_extents compilation performance
    ` [PATCH v16 15/26] c++: Implement __builtin_add_lvalue_reference trait
    ` [PATCH v16 16/26] libstdc++: Optimize std::add_lvalue_reference compilation performance
    ` [PATCH v16 17/26] c++: Implement __builtin_add_rvalue_reference trait
    ` [PATCH v16 18/26] libstdc++: Optimize std::add_rvalue_reference compilation performance
    ` [PATCH v16 19/26] c++: Implement __builtin_decay trait
    ` [PATCH v16 20/26] libstdc++: Optimize std::decay compilation performance
    ` [PATCH v16 21/26] c++: Implement __builtin_rank trait
    ` [PATCH v16 22/26] libstdc++: Optimize std::rank compilation performance
    ` [PATCH v16 23/26] c++: Implement __builtin_is_invocable trait
    ` [PATCH v16 24/26] libstdc++: Optimize std::is_invocable compilation performance
    ` [PATCH v16 25/26] c++: Implement __builtin_is_nothrow_invocable trait
    ` [PATCH v16 26/26] libstdc++: Optimize std::is_nothrow_invocable compilation performance
    ` [PATCH v17 00/26] Optimize more type traits
      ` [PATCH v17 01/26] c++: Implement __is_const built-in trait
      ` [PATCH v17 02/26] libstdc++: Optimize std::is_const compilation performance
      ` [PATCH v17 03/26] c++: Implement __is_volatile built-in trait
      ` [PATCH v17 04/26] libstdc++: Optimize std::is_volatile compilation performance
      ` [PATCH v17 05/26] c++: Implement __is_pointer built-in trait
      ` [PATCH v17 06/26] libstdc++: Optimize std::is_pointer compilation performance
      ` [PATCH v17 07/26] c++: Implement __builtin_is_unbounded_array trait
      ` [PATCH v17 08/26] libstdc++: Optimize std::is_unbounded_array compilation performance
      ` [PATCH v17 09/26] c++: Implement __add_pointer built-in trait
      ` [PATCH v17 10/26] libstdc++: Optimize std::add_pointer compilation performance
      ` [PATCH v17 11/26] c++: Implement __remove_extent built-in trait
      ` [PATCH v17 12/26] libstdc++: Optimize std::remove_extent compilation performance
      ` [PATCH v17 13/26] c++: Implement __remove_all_extents built-in trait
      ` [PATCH v17 14/26] libstdc++: Optimize std::remove_all_extents compilation performance
      ` [PATCH v17 15/26] c++: Implement __add_lvalue_reference built-in trait
      ` [PATCH v17 16/26] libstdc++: Optimize std::add_lvalue_reference compilation performance
      ` [PATCH v17 17/26] c++: Implement __add_rvalue_reference built-in trait
      ` [PATCH v17 18/26] libstdc++: Optimize std::add_rvalue_reference compilation performance
      ` [PATCH v17 19/26] c++: Implement __decay built-in trait
      ` [PATCH v17 20/26] libstdc++: Optimize std::decay compilation performance
      ` [PATCH v17 21/26] c++: Implement __array_rank built-in trait
      ` [PATCH v17 22/26] libstdc++: Optimize std::rank compilation performance
      ` [PATCH v17 23/26] c++: Implement __builtin_is_invocable trait
      ` [PATCH v17 24/26] libstdc++: Optimize std::is_invocable compilation performance
      ` [PATCH v17 25/26] c++: Implement __builtin_is_nothrow_invocable trait
      ` [PATCH v17 26/26] libstdc++: Optimize std::is_nothrow_invocable compilation performance
      ` [PATCH v18 00/26] Optimize more type traits
        ` [PATCH v18 01/26] c++: Implement __is_const built-in trait
        ` [PATCH v18 02/26] libstdc++: Optimize std::is_const compilation performance
        ` [PATCH v18 03/26] c++: Implement __is_volatile built-in trait
        ` [PATCH v18 04/26] libstdc++: Optimize std::is_volatile compilation performance
        ` [PATCH v18 05/26] c++: Implement __is_pointer built-in trait
        ` [PATCH v18 06/26] libstdc++: Optimize std::is_pointer compilation performance
        ` [PATCH v18 07/26] c++: Implement __is_unbounded_array built-in trait
        ` [PATCH v18 08/26] libstdc++: Optimize std::is_unbounded_array compilation performance
        ` [PATCH v18 09/26] c++: Implement __add_pointer built-in trait
        ` [PATCH v18 10/26] libstdc++: Optimize std::add_pointer compilation performance
        ` [PATCH v18 11/26] c++: Implement __remove_extent built-in trait
        ` [PATCH v18 12/26] libstdc++: Optimize std::remove_extent compilation performance
        ` [PATCH v18 13/26] c++: Implement __remove_all_extents built-in trait
        ` [PATCH v18 14/26] libstdc++: Optimize std::remove_all_extents compilation performance
        ` [PATCH v18 15/26] c++: Implement __add_lvalue_reference built-in trait
        ` [PATCH v18 16/26] libstdc++: Optimize std::add_lvalue_reference compilation performance
        ` [PATCH v18 17/26] c++: Implement __add_rvalue_reference built-in trait
        ` [PATCH v18 18/26] libstdc++: Optimize std::add_rvalue_reference compilation performance
        ` [PATCH v18 19/26] c++: Implement __decay built-in trait
        ` [PATCH v18 20/26] libstdc++: Optimize std::decay compilation performance
        ` [PATCH v18 21/26] c++: Implement __array_rank built-in trait
        ` [PATCH v18 22/26] libstdc++: Optimize std::rank compilation performance
        ` [PATCH v18 23/26] c++: Implement __is_invocable built-in trait
          ` [PATCH v19 "
            ` [PATCH v20 "
              ` [PATCH v21 20/23] "
        ` [PATCH v18 24/26] libstdc++: Optimize std::is_invocable compilation performance
        ` [PATCH v18 25/26] c++: Implement __is_nothrow_invocable built-in trait
        ` [PATCH v18 26/26] libstdc++: Optimize std::is_nothrow_invocable compilation performance

[PATCH][risc-v] libstdc++: Preserve signbit of nan when converting float to double [PR113578]
 2024-05-07 16:45 UTC  (10+ messages)

Fix gnu versioned namespace mode 00/03
 2024-05-07 16:15 UTC  (2+ messages)

Fix gnu versioned namespace mode 01/03
 2024-05-07 16:08 UTC  (2+ messages)

[PATCH 1/2] libstdc++: Fix data race in std::basic_ios::fill() [PR77704]
 2024-05-07 13:52 UTC  (2+ messages)
` [PATCH 2/2] libstdc++: Fix data races in std::ctype<char> [PR77704]

[PATCH] libstdc++: Rewrite std::variant comparisons without macros
 2024-05-07 13:51 UTC  (2+ messages)

[committed] libstdc++: Fix handling of incomplete UTF-8 sequences in _Unicode_view
 2024-05-07 13:49 UTC 

[committed] libstdc++: Fix <memory> for -std=c++23 -ffreestanding [PR114866]
 2024-05-07 13:48 UTC 

[PATCH 1/4] libstdc++: Heterogeneous std::pair comparisons [PR113386]
 2024-05-07 13:45 UTC  (3+ messages)
` [PATCH 4/4] libstdc++: Simplify std::variant comparison operators

[PATCH] libstdc++: Use __builtin_shufflevector for simd split and concat
 2024-05-07 13:41 UTC 

[committed] libstdc++: Constrain equality ops for std::pair, std::tuple, std::variant
 2024-05-07 12:49 UTC 

[committed] libstdc++: Use https instead of http in some comments
 2024-05-07 12:47 UTC 

[committed] libstdc++: Update ABI test to disallow adding to released symbol versions
 2024-05-07 12:46 UTC 

[COMMITTED] build: Derive object names in make_sunver.pl
 2024-05-07 11:14 UTC 

[COMMITTED] Remove obsolete Solaris 11.3 support
 2024-05-07  8:51 UTC  (3+ messages)
` [COMMITTED v2] "

Fix gnu versioned namespace mode 03/03
 2024-05-04 21:11 UTC 

Fix gnu versioned namespace mode 02/03
 2024-05-04 21:11 UTC 

[PATCH] libstdc++: Update powerpc-linux-gnu baseline_symbols
 2024-05-03 11:22 UTC  (4+ messages)

[PATCH] libstdc++: Fix <memory> for -std=c++23 -ffreestanding [PR114866]
 2024-05-02 11:26 UTC 

[PATCH] libstdc++: Fix std::chrono::tzdb to work with vanguard format
 2024-05-02 11:25 UTC  (2+ messages)

[PATCH] libstdc++: Fix handling of incomplete UTF-8 sequences in _Unicode_view
 2024-05-01 19:41 UTC 

[committed] libstdc++: Guard uses of is_pointer_interconvertible_v [PR114891]
 2024-05-01 16:27 UTC 

K-12 Schools, Private Schools Contacts 2024
 2024-04-30 16:43 UTC 

[PATCH] libstdc++: Implement ranges::concat_view from P2542R7
 2024-04-29  9:11 UTC  (2+ messages)

[PATCH] libstdc++: Update Solaris baselines for GCC 14.0
 2024-04-29  8:14 UTC  (2+ messages)

[PATCH] libstdc++: Update Solaris baselines for GCC 13.2
 2024-04-29  8:13 UTC  (2+ messages)

[committed] libstdc++: Do not apply localized formatting to NaN and inf [PR114863]
 2024-04-26 15:03 UTC 

[committed] libstdc++: Adjust whitespace in status tables in manual
 2024-04-26 11:00 UTC  (3+ messages)
` [committed,gcc-13] libstdc++: Update status tables to refer to GCC 13 not mainline
` [committed,gcc-14] libstdc++: Update status tables to refer to GCC 14 "

[PATCH] Fix overwriting files with fs::copy_file on windows
 2024-04-25 20:16 UTC  (2+ messages)

[gcc-13 PATCH 0/2] Replace libstdc++_libbacktrace.a with libstdc++exp.a
 2024-04-25 17:58 UTC  (6+ messages)
` [gcc-13 PATCH 1/2] libstdc++: Fix libstdc++exp.a so it really does contain Filesystem TS symbols
` [gcc-13 PATCH 2/2] libstdc++: Add libstdc++_libbacktrace.a to libstdc++exp
    ` [gcc-13 PATCH 2/2 v3] "

[committed] libstdc++: Rename man pages to use '::' instead of '_'
 2024-04-25 17:44 UTC 

[committed] libstdc++: Fix typo in Doxygen comment
 2024-04-25 17:44 UTC 

[committed] libstdc++: Fix run_doxygen for Doxygen 1.10 man page format
 2024-04-25 17:44 UTC 

[committed] libstdc++: Update Doxygen config for new headers
 2024-04-25 17:44 UTC 

[committed] libstdc++: Add comment to #include in <variant>
 2024-04-25 17:43 UTC 

[PATCH] libstdc++: Silence irrelevant warnings in <experimental/simd>
 2024-04-22 16:06 UTC  (2+ messages)

[PATCH] libstdc++: Fix conversion of simd to vector builtin
 2024-04-22 16:04 UTC  (2+ messages)

[PATCH] libstdc++: Workaround kernel-headers on s390x-linux
 2024-04-22 15:41 UTC  (2+ messages)

[committed] libstdc++: Simplify constraints on <=> for std::reference_wrapper
 2024-04-19 20:08 UTC 

[PATCH] libstdc++: Support link chains in std::chrono::tzdb::locate_zone [PR114770]
 2024-04-19 20:08 UTC  (4+ messages)

[PATCH] libstdc++: Fix std::ranges::iota is not included in numeric [PR108760]
 2024-04-19  9:18 UTC  (3+ 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).