From 412471771a28a39e7943cd70cc6dcbf594e8f21d Mon Sep 17 00:00:00 2001 From: asuessenbach Date: Wed, 16 Nov 2022 08:38:00 +0100 Subject: [PATCH] Fix include guard of vulkan_static_assertions.hpp --- VulkanHppGenerator.cpp | 4 ++-- vulkan/vulkan_static_assertions.hpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/VulkanHppGenerator.cpp b/VulkanHppGenerator.cpp index c65ca88..2f41c04 100644 --- a/VulkanHppGenerator.cpp +++ b/VulkanHppGenerator.cpp @@ -417,8 +417,8 @@ void VulkanHppGenerator::generateVulkanStaticAssertionsHppFile() const std::cout << "VulkanHppGenerator: Generating " << static_assertions_hpp << " ..." << std::endl; std::string const vulkanHandlesHppTemplate = R"(${licenseHeader} -#ifndef VULKAN_STRUCTS_HPP -# define VULKAN_STRUCTS_HPP +#ifndef VULKAN_STATIC_ASSERTIONS_HPP +# define VULKAN_STATIC_ASSERTIONS_HPP #include diff --git a/vulkan/vulkan_static_assertions.hpp b/vulkan/vulkan_static_assertions.hpp index 20d1bc8..a0eff2a 100644 --- a/vulkan/vulkan_static_assertions.hpp +++ b/vulkan/vulkan_static_assertions.hpp @@ -5,8 +5,8 @@ // This header is generated from the Khronos Vulkan XML API Registry. -#ifndef VULKAN_STRUCTS_HPP -#define VULKAN_STRUCTS_HPP +#ifndef VULKAN_STATIC_ASSERTIONS_HPP +#define VULKAN_STATIC_ASSERTIONS_HPP #include