Skip to content

Commit

Permalink
Try to workaround a possible bug with clang and gcc... (#1902)
Browse files Browse the repository at this point in the history
  • Loading branch information
asuessenbach committed Jun 13, 2024
1 parent 45d9006 commit 842406f
Show file tree
Hide file tree
Showing 3 changed files with 84 additions and 84 deletions.
2 changes: 1 addition & 1 deletion VulkanHppGenerator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7803,7 +7803,7 @@ std::string VulkanHppGenerator::generateHandle( std::pair<std::string, HandleDat
static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::${debugReportObjectType};

public:
${className}() = default;
${className}() VULKAN_HPP_NOEXCEPT {}; // = default - try to workaround a compiler issue
${className}( ${className} const & rhs ) = default;
${className} & operator=( ${className} const & rhs ) = default;
${className}( ${className} && rhs ) = default;
Expand Down
Loading

0 comments on commit 842406f

Please sign in to comment.