Priority: P3
Component: libstdc++
Assignee: unassigned at gcc dot gnu.org
Reporter: andij.cr at gmail dot com
Target Milestone: ---
compiled with
g++-10 -std=c++20 split_view_wrong.cpp -lfmt
godbolt link https://gcc.godbolt.org/z/47TxWovd4
fmtlib used for
Priority: P3
Component: tree-optimization
Assignee: unassigned at gcc dot gnu.org
Reporter: andij.cr at gmail dot com
Target Milestone: ---
testcase:
#include
template
auto line = [](Ts &&...args) {
if constexpr (sizeof...(Ts) != 0) {
([&] {
Priority: P3
Component: tree-optimization
Assignee: unassigned at gcc dot gnu.org
Reporter: andij.cr at gmail dot com
Target Milestone: ---
tested from gcc 8 to gcc 11
an identity function (mark) interposed in a call stack that ends in a complex
type is
: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: andij.cr at gmail dot com
Target Milestone: ---
compiling this c++ code
enum class error {};
template
void afunction(F) {
error{char(0)};
}
with
Priority: P3
Component: middle-end
Assignee: unassigned at gcc dot gnu.org
Reporter: andij.cr at gmail dot com
Target Milestone: ---
consider this c++ function
#include
#include
#include
auto to_bytes(uint32_t arg){
std::array out{};
std::memcpy