Remove extraneous semicolons

This commit is contained in:
Christian Mazakas
2023-06-21 07:46:53 -07:00
parent 7d39b68e46
commit dce386068b
9 changed files with 51 additions and 51 deletions
+2 -2
View File
@@ -39,8 +39,8 @@ template <typename T> struct A
std::free(p);
}
bool operator==(A const& a) const { return i == a.i; };
bool operator!=(A const& a) const { return i != a.i; };
bool operator==(A const& a) const { return i == a.i; }
bool operator!=(A const& a) const { return i != a.i; }
};
template <class T> int A<T>::count = 0;