rollback change 'cos Ken is hassling me

This commit is contained in:
Hieu Hoang 2013-05-19 21:13:00 +01:00
parent 33588b702c
commit e13884dbc4

View File

@ -29,9 +29,7 @@ template <class T> typename T::const_iterator FindStringPiece(const T &t, const
std::string temp(key.data(), key.size());
return t.find(temp);
#else
std::string temp(key.data(), key.size());
return t.find(temp);
//return t.find(key, StringPieceCompatibleHash(), StringPieceCompatibleEquals());
return t.find(key, StringPieceCompatibleHash(), StringPieceCompatibleEquals());
#endif
}