1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Make conversions from LocalVector to Vector explicit.

This commit is contained in:
Lukas Tenbrink
2025-06-13 00:38:06 +02:00
parent 6efa557e9b
commit abe3b481ae
19 changed files with 52 additions and 52 deletions

View File

@@ -101,7 +101,7 @@ Vector<uint8_t> WaylandThread::_read_fd(int fd) {
data.resize(bytes_read + chunk_size);
}
return data;
return Vector<uint8_t>(data);
}
// Based on the wayland book's shared memory boilerplate (PD/CC0).