Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
patapancakes committed Jan 7, 2024
1 parent b6b98bd commit d3767c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/async_handler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ void AsyncHandler::ClearRequests() {
auto it = async_requests.begin();
while (it != async_requests.end()) {
auto& req = *it;
if (it->second.IsReady()) {
if (it->second->IsReady()) {
it = async_requests.erase(it);
} else {
++it;
Expand Down

0 comments on commit d3767c6

Please sign in to comment.