Commit 14b2c1da authored by Robert Bradshaw's avatar Robert Bradshaw

Remove superfluous semicolons.

This closes #1522.
parent ccfebe91
......@@ -454,8 +454,8 @@ class __Pyx_FakeReference {
T *operator->() { return ptr; }
operator T&() { return *ptr; }
// TODO(robertwb): Delegate all operators (or auto-generate unwrapping code where needed).
template<typename U> bool operator ==(U other) { return *ptr == other; };
template<typename U> bool operator !=(U other) { return *ptr != other; };
template<typename U> bool operator ==(U other) { return *ptr == other; }
template<typename U> bool operator !=(U other) { return *ptr != other; }
private:
T *ptr;
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment