public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/104343] New: Too many arguments error reported for a variadic-argument function if std::endl is passed
@ 2022-02-02 13:19 ethouris at gmail dot com
  2022-02-02 14:17 ` [Bug c++/104343] " rguenth at gcc dot gnu.org
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: ethouris at gmail dot com @ 2022-02-02 13:19 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=104343

            Bug ID: 104343
           Summary: Too many arguments error reported for a
                    variadic-argument function if std::endl is passed
           Product: gcc
           Version: 7.5.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ethouris at gmail dot com
  Target Milestone: ---

I have the following definition (requires `<string>` and `<stringstream>`):

```
template <class Stream>
inline Stream& Print(Stream& in) { return in;}

template <class Stream, class Arg1, class... Args>
inline Stream& Print(Stream& sout, Arg1&& arg1, Args&&... args)
{
    sout << arg1;
    return Print(sout, args...);
}

template <class... Args>
inline std::string Sprint(Args&&... args)
{
    std::ostringstream sout;
    Print(sout, args...);
    return sout.str();
}
```

The call

```
sinfo.bufferinfo = Sprint("B: off=", buffer.offset(), " now=",
FormatTime(timeinfo), endl);
```

Reports this error:

```
(5 of 13): error: too many arguments to function 'std::__cxx11::string
Sprint(Args&& ...) [with Args = {}; std::__cxx11::string =
std::__cxx11::basic_string<char>]'
```

Replacing `endl` with `"\n"` fixes the problem.

Might be that I cannot bind `std::endl` to the argument as given here, but the
error report is at least misleading. How can there be "too many arguments"
passed to a function that gets a variable number of arguments?

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

end of thread, other threads:[~2024-03-17  6:17 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-02 13:19 [Bug c++/104343] New: Too many arguments error reported for a variadic-argument function if std::endl is passed ethouris at gmail dot com
2022-02-02 14:17 ` [Bug c++/104343] " rguenth at gcc dot gnu.org
2022-02-02 17:13 ` redi at gcc dot gnu.org
2022-02-02 17:15 ` redi at gcc dot gnu.org
2022-02-02 17:31 ` redi at gcc dot gnu.org
2022-02-02 17:33 ` redi at gcc dot gnu.org
2022-02-02 21:25 ` [Bug c++/104343] improved error message for passing overloaded function to variadic-argument function pinskia at gcc dot gnu.org
2024-03-16 18:11 ` [Bug c++/104343] improved error message for passing overloaded function to variadic(templated)-argument function pinskia at gcc dot gnu.org
2024-03-17  6:07 ` f.heckenbach@fh-soft.de
2024-03-17  6:17 ` pinskia 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).