Apply some lint n' stuff

This commit is contained in:
Dr. Chat
2015-06-27 22:43:33 -05:00
parent 8a6c620fe7
commit 944b39c51d
4 changed files with 31 additions and 13 deletions

View File

@@ -84,12 +84,30 @@ struct be {
be(const be &other) { value = other.value; }
operator T() const { return xe::byte_swap(value); }
be<T>& operator+=(int a) { *this = *this + a; return *this; }
be<T>& operator-=(int a) { *this = *this - a; return *this; }
be<T>& operator++() { *this += 1; return *this; } // ++a
be<T> operator++(int) { *this += 1; return (*this - 1); } // a++
be<T>& operator--() { *this -= 1; return *this; } // --a
be<T> operator--(int) { *this -= 1; return (*this + 1); } // a--
be<T> &operator+=(int a) {
*this = *this + a;
return *this;
}
be<T> &operator-=(int a) {
*this = *this - a;
return *this;
}
be<T> &operator++() {
*this += 1;
return *this;
} // ++a
be<T> operator++(int) {
*this += 1;
return (*this - 1);
} // a++
be<T> &operator--() {
*this -= 1;
return *this;
} // --a
be<T> operator--(int) {
*this -= 1;
return (*this + 1);
} // a--
T value;
};