mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
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).
This commit is contained in:
Notes:
github-actions[bot]
2025-04-09 00:01:12 +00:00
Author: https://github.com/trflynn89 Commit: https://github.com/LadybirdBrowser/ladybird/commit/f070264800f Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4286
@@ -1114,7 +1114,7 @@ bool is_animatable_property(JsonObject& properties, StringView property_name)
|
||||
}
|
||||
|
||||
if (!property.value().has("longhands"sv)) {
|
||||
dbgln("Property '{}' must specify either 'animation-type' or 'longhands'"sv, property_name);
|
||||
dbgln("Property '{}' must specify either 'animation-type' or 'longhands'", property_name);
|
||||
VERIFY_NOT_REACHED();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user