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 authored and juan-lunarg committed Sep 21, 2023
1 parent 0857635 commit d3e6eb6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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
2 changes: 1 addition & 1 deletion scripts/generators/struct_helper_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,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 d3e6eb6

Please sign in to comment.