[Bug libstdc++/93478] New: Spelling error in std/atomic trivally -> trivially

2020-01-28 Thread raldone01 at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93478

Bug ID: 93478
   Summary: Spelling error in std/atomic trivally -> trivially
   Product: gcc
   Version: unknown
Status: UNCONFIRMED
  Severity: normal
  Priority: P3
 Component: libstdc++
  Assignee: unassigned at gcc dot gnu.org
  Reporter: raldone01 at gmail dot com
  Target Milestone: ---

Trivially is missing an i.

[Bug libstdc++/105375] New: std::packaged_task has no deduction guide.

2022-04-25 Thread raldone01 at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105375

Bug ID: 105375
   Summary: std::packaged_task has no deduction guide.
   Product: gcc
   Version: 11.2.0
Status: UNCONFIRMED
  Severity: normal
  Priority: P3
 Component: libstdc++
  Assignee: unassigned at gcc dot gnu.org
  Reporter: raldone01 at gmail dot com
  Target Milestone: ---

According to cppreference
https://en.cppreference.com/w/cpp/thread/packaged_task/deduction_guides
std::packaged_task should have a deduction guide.
The example listed on their page does not compile.

gcc -v
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/lto-wrapper
Target: x86_64-pc-linux-gnu
Configured with: /build/gcc/src/gcc/configure
--enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++,d --enable-bootstrap
--prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man
--infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/
--with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit
--enable-cet=auto --enable-checking=release --enable-clocale=gnu
--enable-default-pie --enable-default-ssp --enable-gnu-indirect-function
--enable-gnu-unique-object --enable-linker-build-id --enable-lto
--enable-multilib --enable-plugin --enable-shared --enable-threads=posix
--disable-libssp --disable-libstdcxx-pch --disable-werror
--with-build-config=bootstrap-lto --enable-link-serialization=1
gdc_include_dir=/usr/include/dlang/gdc
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 11.2.0 (GCC)
System type: Ubuntu WSL

Command line: c++ -Wall -Wextra -g -std=gnu++20 -o lin.obj -c main.cpp

Expected behavior: The snipped from cppreference compiles.
Actual behavior:   The deduction guide for packaged_task is missing?

int func(double) { return 0; }
int main() {
std::packaged_task f{func}; // deduces packaged_task
int i = 5;
std::packaged_task g = [&](double) { return i; }; // deduces
packaged_task
}

As std::function has deduction guides shouldn't std::packaged_task have some
too?

[Bug libstdc++/105375] std::packaged_task has no deduction guide.

2022-04-25 Thread raldone01 at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105375

--- Comment #1 from raldone01  ---
Created attachment 52866
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=52866&action=edit
main.cpp

[Bug libstdc++/105375] std::packaged_task has no deduction guide.

2022-04-25 Thread raldone01 at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105375

--- Comment #2 from raldone01  ---
Created attachment 52867
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=52867&action=edit
All the request files.

[Bug libstdc++/105375] std::packaged_task has no deduction guide.

2022-04-25 Thread raldone01 at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105375

--- Comment #5 from raldone01  ---
Thank you for your reply.
What does that mean?
Are defect reports updates for older standards?
Is it meant to be available at some point in c++17?