Fix no return warning in FileComparator

This commit is contained in:
Igor Canadi 2014-03-26 14:46:07 -07:00
parent 1e9621d4e5
commit 6a08bc042a

View file

@ -1207,6 +1207,7 @@ class VersionSet::Builder {
return BySmallestKey(f1, f2, internal_comparator);
}
assert(false);
return false;
}
};