mirror of
https://github.com/godotengine/godot.git
synced 2026-05-12 22:35:35 +00:00
43be9fa0c8
Since char/wchar_t can be either signed or unsigned, its conversion to uint32_t leads to different values depending on platform. In particular, the same string represented as char* (Latin-1; StringName direct construction) or uint32_t (UTF-8; constructed via String) previously resulted in different hashes.