Fix build break on glibc, for real.

Change-Id: I8bbec237229b05f96c708d41f3c4da17e2a90e2b
This commit is contained in:
Jeff Brown
2012-03-19 12:02:10 -07:00
parent cc67069aa7
commit 80a6b33be2

View File

@ -139,7 +139,11 @@ public:
const Vector<size_t>* offsetsForString(const String16& val) const;
private:
#ifdef __GLIBC__
static int config_sort(const void* lhs, const void* rhs, void* state);
#else
static int config_sort(void* state, const void* lhs, const void* rhs);
#endif
const bool mUTF8;