Remove extra semicolon after member definition

Some compilers complain about this.
This commit is contained in:
James Price 2023-09-21 16:50:16 -04:00 committed by Juan Ramos
parent 08576356d6
commit d3e6eb65dd
2 changed files with 2 additions and 2 deletions

View file

@ -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() {

View file

@ -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() {