On Mon Feb 20 20:24:33 2023 +0000, Henri Verbeet wrote:
From patch 1/4:
+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.