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;