Remove unused useBinary class variable.

This commit is contained in:
Jacob Leverich 2013-03-04 14:23:50 -08:00
parent 4e8d2f6d10
commit 7e74898c4a
2 changed files with 1 additions and 4 deletions

View File

@ -135,8 +135,7 @@ void Connection::issue_get(const char* key, double now) {
if (read_state != LOADING) stats.tx_bytes += l;
}
void Connection::issue_set(const char* key,
const char* value, int length,
void Connection::issue_set(const char* key, const char* value, int length,
double now) {
Operation op;
int l;

View File

@ -102,6 +102,4 @@ private:
Generator *keysize;
KeyGenerator *keygen;
Generator *iagen;
bool useBinary;
};