mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:18:11 +00:00
Everywhere: Convert known short-strings to the infallible String factory
For now, this is limited to strings that are 3 bytes or less. We can use 7 bytes on 64-bit platforms, but we do not yet assume 64-bit for Lagom hosts (e.g. wasm).
This commit is contained in:
parent
d48266a420
commit
f1de4f8872
7 changed files with 7 additions and 7 deletions
|
@ -50,7 +50,7 @@ ErrorOr<void> Program::attach_shader(Shader& shader)
|
|||
|
||||
ErrorOr<void> Program::link(GPU::Device& device)
|
||||
{
|
||||
m_info_log = TRY(String::from_utf8(""sv));
|
||||
m_info_log = String {};
|
||||
|
||||
GLSL::Linker linker;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue