Skip to content

Commit

Permalink
Fix build error due to renamed variable inside assert
Browse files Browse the repository at this point in the history
  • Loading branch information
ihnorton committed Aug 19, 2020
1 parent c07f76e commit 8224ba2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tiledb/sm/filesystem/s3_thread_pool_executor.cc
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ S3ThreadPoolExecutor::S3ThreadPoolExecutor(ThreadPool* const thread_pool)

S3ThreadPoolExecutor::~S3ThreadPoolExecutor() {
assert(state_ == State::STOPPED);
assert(tasks_.empty());
assert(outstanding_tasks_.empty());
}

Status S3ThreadPoolExecutor::Stop() {
Expand Down

0 comments on commit 8224ba2

Please sign in to comment.