20 Feb
2023
20 Feb
'23
8:24 p.m.
On Mon Feb 20 20:24:33 2023 +0000, Henri Verbeet wrote:
From patch 1/4: ```diff +static const char * get_case_insensitive_typename(const char *name) +{ + static const char *names[] = + { + "dword", + "float", + "matrix", + "string", + "vector", + }; ``` We'd want the names[] array itself to be const as well, right? (I.e., "static const char *const names[] = ...") Right, pushed that.
-- https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/101#note_24845