The `CONTROL_PREFIX` constant in `test_keyvaluedb_atomicity.cc` has
never been used since its introduction in commit
6a624b960a.
Clang's warning highlights the unused variable:
```
warning: unused variable 'CONTROL_PREFIX' [-Wunused-const-variable]
```
Remove the unnecessary constant to clean up the code and eliminate
the compiler warning.
Refs
6a624b960a
Signed-off-by: Kefu Chai <tchaikov@gmail.com>
using namespace std;
-const string CONTROL_PREFIX = "CONTROL";
const string PRIMARY_PREFIX = "PREFIX";
const int NUM_COPIES = 100;
const int NUM_THREADS = 30;