Skip to content

Commit

Permalink
merian: SpecBuilder: Fix clang tidy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
LDAP committed Aug 22, 2024
1 parent 91c7a7a commit 1978071
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/merian/vk/pipeline/specialization_info_builder.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class SpecializationInfoBuilder {
}

uint32_t add_entry(const bool& entry) {
const VkBool32 entry32 = entry;
const VkBool32 entry32 = static_cast<VkBool32>(entry);
return add_entry(entry32);
}

Expand Down

0 comments on commit 1978071

Please sign in to comment.