From a4f58be00c58e06b5bd60bec7eb9e37b6f112c24 Mon Sep 17 00:00:00 2001 From: Shaun Ren Date: Wed, 12 Mar 2025 21:48:50 -0400 Subject: [PATCH] vkd3d-shader/hlsl: Remove the unused hlsl_array_type_to_string() declaration. Accidentally introduced in 870c68dd278ea4172995ed9b7b554a7a62d7f7d9. --- libs/vkd3d-shader/hlsl.h | 1 - 1 file changed, 1 deletion(-) diff --git a/libs/vkd3d-shader/hlsl.h b/libs/vkd3d-shader/hlsl.h index 9807e798..a752ee5b 100644 --- a/libs/vkd3d-shader/hlsl.h +++ b/libs/vkd3d-shader/hlsl.h @@ -1626,7 +1626,6 @@ struct hlsl_type *hlsl_get_element_type_from_path_index(struct hlsl_ctx *ctx, co struct hlsl_ir_node *idx); const char *hlsl_jump_type_to_string(enum hlsl_ir_jump_type type); -const char *hlsl_array_type_to_string(enum hlsl_array_type type); struct hlsl_type *hlsl_new_array_type(struct hlsl_ctx *ctx, struct hlsl_type *basic_type, unsigned int array_size, enum hlsl_array_type array_type);