[Bug c++/109633] segfault using cout after set with simple prog from cppreference.com

2023-04-26 Thread bremende55 at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109633 --- Comment #4 from Jo --- good idea, thank you

[Bug c++/109633] segfault using cout after set with simple prog from cppreference.com

2023-04-26 Thread bremende55 at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109633 Jo changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resolution|---

[Bug c++/109633] New: segfault using cout after set with simple prog from cppreference.com

2023-04-26 Thread bremende55 at gmail dot com via Gcc-bugs
Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: bremende55 at gmail dot com Target Milestone: --- Created attachment 54924 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=54924&action=edit *ii file from comp

[Bug c++/89196] New: clock::to_time_t(ftime)

2019-02-04 Thread bremende55 at gmail dot com
: unassigned at gcc dot gnu.org Reporter: bremende55 at gmail dot com Target Milestone: --- Example in https://en.cppreference.com/w/cpp/filesystem/last_write_time compiles fine with g++ 8.1 and 8.2, but not with 9.0.1 Error message: lastwritetime.cpp: In Funktion »int main

[Bug c++/77263] comment /* */ is ignored in some cases

2016-08-16 Thread bremende55 at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77263 --- Comment #4 from Jo --- (In reply to Jonathan Wakely from comment #3) > (In reply to Jo from comment #2) > > /* and */ as part of a C-string literal should not interfere with /* */ in > > the code. > > They are no part of a string-literal, t

[Bug c++/77263] comment /* */ is ignored in some cases

2016-08-16 Thread bremende55 at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77263 Jo changed: What|Removed |Added Status|RESOLVED|UNCONFIRMED Resolution|INVALID

[Bug c++/77263] New: comment /* */ is ignored in some cases

2016-08-16 Thread bremende55 at gmail dot com
++ Assignee: unassigned at gcc dot gnu.org Reporter: bremende55 at gmail dot com Target Milestone: --- The following code compiles and gives the correct result: #include #include #include int main() { std::string astring("// x /* meaningless comment start "); /

[Bug c++/76782] New: create_directory(path) gives an error if path exists

2016-08-15 Thread bremende55 at gmail dot com
Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: bremende55 at gmail dot com Target Milestone: --- relates to c++17 filesystem::create_directory(path) gives an exception if path already exists, but the C++standard FDIS N4604 27.10.15.7 says: "Creation fa

[Bug libgcc/58886] regex with (?s) (valid in Java and boost) yields regex_error

2013-10-26 Thread bremende55 at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58886 --- Comment #1 from Jo --- compiler used: g++ (GCC) 4.9.0 20131020 (experimental) on SuSe Linux 12.2

[Bug libgcc/58886] New: regex with (?s) (valid in Java and boost) yields regex_error

2013-10-26 Thread bremende55 at gmail dot com
Priority: P3 Component: libgcc Assignee: unassigned at gcc dot gnu.org Reporter: bremende55 at gmail dot com regex with (?s) (valid in Java and boost) yields regex_error (?s) ist the 'dot-matches-all" match mode, i.e. \n ist treated as normal char see example: