++
Assignee: unassigned at gcc dot gnu.org
Reporter: adrian.wielgosik at gmail dot com
Target Milestone: ---
Currently to_string is implemented in terms of vsnprintf, which makes it close
in performance to the sprintf family. Meanwhile hand-written implementations of
to_string can be up
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68377
Adrian Wielgosik changed:
What|Removed |Added
CC||adrian.wielgosik at gmail dot
com
: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: adrian.wielgosik at gmail dot com
Target Milestone: ---
Example:
template
concept bool Constructible() {
return false
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66059
Adrian Wielgosik changed:
What|Removed |Added
CC||adrian.wielgosik at gmail dot
com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68409
Adrian Wielgosik changed:
What|Removed |Added
CC||adrian.wielgosik at gmail dot
com
++
Assignee: unassigned at gcc dot gnu.org
Reporter: adrian.wielgosik at gmail dot com
Target Milestone: ---
Created attachment 36165
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=36165&action=edit
compiler output
template
concept bool SomeConcept = requires(SomeConc
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: adrian.wielgosik at gmail dot com
Target Milestone: ---
The following code:
template
struct MyStruct;
int main
: minor
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: adrian.wielgosik at gmail dot com
Target Milestone: ---
A simple code example:
template using id=T;
template
concept bool A = requires(T a) { a==a; };
template
concept bool B