Fix gcc warning: gcc correctly notes that const-qualifying the return

type doesn't do anything.

llvm-svn: 64424
This commit is contained in:
Eli Friedman 2009-02-13 01:02:29 +00:00
parent 725de57b7d
commit 159a7cbc36
1 changed files with 2 additions and 2 deletions

View File

@ -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; }