mirror of
https://github.com/KhronosGroup/Vulkan-Utility-Libraries.git
synced 2025-05-15 01:08:39 +00:00
Remove extra semicolon after member definition
Some compilers complain about this.
This commit is contained in:
parent
08576356d6
commit
d3e6eb65dd
2 changed files with 2 additions and 2 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue