forked from OSchip/llvm-project
Fix gcc warning: gcc correctly notes that const-qualifying the return
type doesn't do anything. llvm-svn: 64424
This commit is contained in:
parent
725de57b7d
commit
159a7cbc36
|
@ -369,8 +369,8 @@ public:
|
|||
|
||||
unsigned getNumBuckets() const { return NumBuckets; }
|
||||
unsigned getNumEntries() const { return NumEntries; }
|
||||
const unsigned char* const getBase() const { return Base; }
|
||||
const unsigned char* const getBuckets() const { return Buckets; }
|
||||
const unsigned char* getBase() const { return Base; }
|
||||
const unsigned char* getBuckets() const { return Buckets; }
|
||||
|
||||
bool isEmpty() const { return NumEntries == 0; }
|
||||
|
||||
|
|
Loading…
Reference in New Issue