Re: [extern] Re: [PATCH 1/2] libstdc++: Support UNC paths on MinGW in fs::path

2025-05-10 Thread Johannes Grunenberg
On 10/05/2025 15:09, Jonathan Wakely wrote: > Please confirm that you're using it that way (and not just adding it > because others do so). Yes, that's how I'm using it.

Re: [PATCH 1/2] libstdc++: Support UNC paths on MinGW in fs::path

2025-05-10 Thread Jonathan Wakely
On Sat, 10 May 2025 at 12:49, Johannes Grunenberg wrote: > > UNC paths on Windows start with a root name "\\server" instead of a > drive letter ("c:"). Support for parsing this was already implemented > for cygwin, which (compared to MinGW) doesn't use backslash as the > preferred separator. > Thi

[PATCH 1/2] libstdc++: Support UNC paths on MinGW in fs::path

2025-05-10 Thread Johannes Grunenberg
UNC paths on Windows start with a root name "\\server" instead of a drive letter ("c:"). Support for parsing this was already implemented for cygwin, which (compared to MinGW) doesn't use backslash as the preferred separator. This mainly enables SLASHSLASH_IS_ROOTNAME on Windows and adjusts the tes