Skip to content

Commit

Permalink
Remove extra semicolon after member definition
Browse files Browse the repository at this point in the history
Some compilers complain about this.
  • Loading branch information
jrprice committed Sep 21, 2023
1 parent 0857635 commit e31c9ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/vulkan/utility/vk_struct_helper.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1852,7 +1852,7 @@ class InitStructHelper {
void* p_next = nullptr;
public:
InitStructHelper() = default;
InitStructHelper(void *p_next) : p_next(p_next) {};
InitStructHelper(void *p_next) : p_next(p_next) {}

template <typename T>
operator T() {
Expand Down

0 comments on commit e31c9ae

Please sign in to comment.