Off by one errors .-.

This commit is contained in:
ThePhD 2016-03-25 05:38:09 -04:00
parent 68660a1bed
commit 9aabf71896

View File

@ -122,7 +122,7 @@ inline bool operator!=(const proxy<Table, Key>& right, T&& left) {
}
template<typename Table, typename Key>
inline bool operator==(nil_t left, const proxy<Table, Key>& right) {
inline bool operator==(nil_t, const proxy<Table, Key>& right) {
return !right.valid();
}