Fix cpplint (#7914)

emailweixu-patch-1
Yancey 7 years ago committed by GitHub
parent 187da7f89f
commit 0f0ce4e5ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -101,8 +101,8 @@ bool RPCClient::Wait() {
if (req_count_ <= 0) {
return true;
}
bool a[req_count_];
const size_t kReqCnt = req_count_;
bool a[kReqCnt];
std::vector<std::future<void>> waits(req_count_);
for (int i = 0; i < req_count_; i++) {

Loading…
Cancel
Save