Timothy Flynn
|
ea32502947
|
Everywhere: Run clang-format
The following command was used to clang-format these files:
clang-format-21 -i $(find . \
-not \( -path "./\.*" -prune \) \
-not \( -path "./Build/*" -prune \) \
-not \( -path "./Toolchain/*" -prune \) \
-type f -name "*.cpp" -o -name "*.mm" -o -name "*.h")
|
2026-02-18 08:02:45 -05:00 |
|
Timothy Flynn
|
f070264800
|
Everywhere: Remove sv suffix from format string literals
This prevents the compile-time checks that would catch errors in the
format invocation (which would usually lead to a runtime crash).
|
2025-04-08 20:00:18 -04:00 |
|
Shannon Booth
|
212095e1c2
|
LibURL/Pattern: Ensure string passed through in process a URLPatternInit
Corresponds to: 696b402
|
2025-04-06 08:24:54 -04:00 |
|
Shannon Booth
|
83a82a027f
|
LibURL/Pattern: Do not return errors in some canonicalization steps
Corresponds to: 5c979a31
|
2025-04-06 08:24:54 -04:00 |
|
Shannon Booth
|
f80e7d6816
|
LibURL/Pattern: Implement processing a URL Pattern Init
This gets us to the point just before the point of parsing the
pattern strings for each URL component to produce a regular
expression.
|
2025-04-06 08:24:54 -04:00 |
|