public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libstdc++/105375] New: std::packaged_task has no deduction guide.
@ 2022-04-25 12:49 raldone01 at gmail dot com
  2022-04-25 12:49 ` [Bug libstdc++/105375] " raldone01 at gmail dot com
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: raldone01 at gmail dot com @ 2022-04-25 12:49 UTC (permalink / raw)
  To: 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(double)>
    int i = 5;
    std::packaged_task g = [&](double) { return i; }; // deduces
packaged_task<int(double)>
}

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

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2022-04-26 12:31 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-25 12:49 [Bug libstdc++/105375] New: std::packaged_task has no deduction guide raldone01 at gmail dot com
2022-04-25 12:49 ` [Bug libstdc++/105375] " raldone01 at gmail dot com
2022-04-25 12:51 ` raldone01 at gmail dot com
2022-04-25 13:12 ` redi at gcc dot gnu.org
2022-04-25 13:21 ` redi at gcc dot gnu.org
2022-04-25 13:51 ` raldone01 at gmail dot com
2022-04-25 14:54 ` redi at gcc dot gnu.org
2022-04-25 16:05 ` cvs-commit at gcc dot gnu.org
2022-04-25 16:25 ` redi at gcc dot gnu.org
2022-04-26 12:31 ` cvs-commit at gcc dot gnu.org
2022-04-26 12:31 ` redi at gcc dot gnu.org

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).