From be9459f9c3d4a1ae26f14ad69b95e92fc09385a0 Mon Sep 17 00:00:00 2001 From: Jan Kuhlmann <33833587+M2-TE@users.noreply.github.com> Date: Mon, 24 Feb 2025 11:08:07 +0100 Subject: [PATCH] properly export VkGeometryInstanceFlagsKHR symbol (#2085) --- snippets/CppModuleFileTemplate.hpp | 4 ++-- vulkan/vulkan.cppm | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/snippets/CppModuleFileTemplate.hpp b/snippets/CppModuleFileTemplate.hpp index 206427f..d70b3b4 100644 --- a/snippets/CppModuleFileTemplate.hpp +++ b/snippets/CppModuleFileTemplate.hpp @@ -50,5 +50,5 @@ export namespace std } // This VkFlags type is used as part of a bitfield in some structure. -// As it that can't be mimiced by vk-data types, we need to export just that!! -export VkGeometryInstanceFlagsKHR; \ No newline at end of file +// As it can't be mimicked by vk-data types, we need to export just that!! +export using ::VkGeometryInstanceFlagsKHR; \ No newline at end of file diff --git a/vulkan/vulkan.cppm b/vulkan/vulkan.cppm index 2572306..cde3400 100644 --- a/vulkan/vulkan.cppm +++ b/vulkan/vulkan.cppm @@ -8496,5 +8496,5 @@ export namespace std } // namespace std // This VkFlags type is used as part of a bitfield in some structure. -// As it that can't be mimiced by vk-data types, we need to export just that!! -export VkGeometryInstanceFlagsKHR; +// As it can't be mimicked by vk-data types, we need to export just that!! +export using ::VkGeometryInstanceFlagsKHR;