[Bug libstdc++/77395] [6/7 Regression] std::is_constructible is false for type constructible via implicit conversion operator affecting std::tuple

2016-08-29 Thread j.s.mueller-roemer at gmx dot net
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77395 --- Comment #3 from Johannes S. Mueller-Roemer --- (In reply to Daniel Krügler from comment #1) > I think a better test-case is the following one, which does not depend on > tuple at all: > > //# > #include > >

[Bug libstdc++/77395] New: std::is_constructible is false for type constructible via implicit conversion operator affecting std::tuple

2016-08-28 Thread j.s.mueller-roemer at gmx dot net
: UNCONFIRMED Severity: normal Priority: P3 Component: libstdc++ Assignee: unassigned at gcc dot gnu.org Reporter: j.s.mueller-roemer at gmx dot net Target Milestone: --- Created attachment 39504 --> https://gcc.gnu.org/bugzilla/attachment.cgi

[Bug debug/59474] Invalid binaries produced when making win32 EXEs with -gsplit-dwarf

2016-02-05 Thread j.s.mueller-roemer at gmx dot net
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59474 Johannes S. Mueller-Roemer changed: What|Removed |Added CC||j.s.mueller-roemer at gmx

[Bug c++/67436] [C++14] Generic lambda capture fails for thread_local variables

2015-09-03 Thread j.s.mueller-roemer at gmx dot net
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67436 --- Comment #3 from Johannes S. Mueller-Roemer --- The following workaround seems to work as well: int main(int, char**) { thread_local int foo; [=foo] (auto bar) { foo += bar; }(1u); return 0; }

[Bug c++/67436] New: [C++14] Generic lambda capture fails for thread_local variables

2015-09-02 Thread j.s.mueller-roemer at gmx dot net
Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: j.s.mueller-roemer at gmx dot net Target Milestone: --- I encountered an error with a missing __tls_init after using a thread_local variable within a generic lambda. I was able to work

[Bug c++/67436] [C++14] Generic lambda capture fails for thread_local variables

2015-09-02 Thread j.s.mueller-roemer at gmx dot net
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67436 --- Comment #2 from Johannes S. Mueller-Roemer --- (In reply to Jonathan Wakely from comment #1) > (In reply to Johannes S. Mueller-Roemer from comment #0) > > I encountered an error with a missing __tls_init after using a thread_local > >