Merge pull request #558 from aamihailov/master

fix compilation error (same as fix #284)
This commit is contained in:
Igor Canadi 2015-03-26 10:02:09 -04:00
commit 3539e06448

View File

@ -1431,7 +1431,9 @@ class Benchmark {
}
Slice AllocateKey(std::unique_ptr<const char[]>* key_guard) {
key_guard->reset(new char[key_size_]);
char* data = new char[key_size_];
const char* const_data = data;
key_guard->reset(const_data);
return Slice(key_guard->get(), key_size_);
}