[libFuzzer] remove stale code, as suggested in https://reviews.llvm.org/D48800

llvm-svn: 336230
This commit is contained in:
Kostya Serebryany 2018-07-03 21:22:44 +00:00
parent 0bc9143de8
commit dcac0a3b5e
1 changed files with 0 additions and 7 deletions

View File

@ -37,13 +37,6 @@ public:
return Size == w.Size && 0 == memcmp(Data, w.Data, Size);
}
bool operator<(const FixedWord<kMaxSize> &w) const {
ScopedDoingMyOwnMemOrStr scoped_doing_my_own_mem_os_str;
if (Size != w.Size)
return Size < w.Size;
return memcmp(Data, w.Data, Size) < 0;
}
static size_t GetMaxSize() { return kMaxSize; }
const uint8_t *data() const { return Data; }
uint8_t size() const { return Size; }