: UNCONFIRMED
Severity: normal
Priority: P3
Component: libstdc++
Assignee: unassigned at gcc dot gnu.org
Reporter: tonvandenheuvel at gmail dot com
Target Milestone: ---
Suppose we have a subdirectory `x` with two other subdirectories `a` and `b`,
both
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94900
--- Comment #1 from Ton van den Heuvel ---
I found that specifying
`std::filesystem::directory_options::skip_permission_denied` does list all
entries for `recursive_directory_iterator`.
I no longer think this is a bug; the directory iterator sto
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94900
Ton van den Heuvel changed:
What|Removed |Added
Resolution|--- |WONTFIX
Status|UNCONFIR
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: tonvandenheuvel at gmail dot com
Target Milestone: ---
The following code results in an ICE using GCC 9.2.0:
#include
std::string f(const std::string& s)
{
return !s.empty() ? s : throw "Invalid";
}
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: tonvandenheuvel at gmail dot com
Target Milestone: ---
Created attachment 42639
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=42639&action=edit
preprocessed source file
The fo