Skip to content

Commit

Permalink
Work in progress
Browse files Browse the repository at this point in the history
  • Loading branch information
skhaz committed Nov 23, 2024
1 parent 2f833ae commit b29cbaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/overlay.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ void overlay::add(std::shared_ptr<widget> widget) noexcept {
}

void overlay::remove(std::shared_ptr<widget> widget) noexcept {
_widgets.remove_if([&widget](const std::shared_ptr<graphics::widget> &existing) {
_widgets.remove_if([&widget](const std::shared_ptr<::widget> &existing) {
return existing == widget;
});
}
Expand Down

0 comments on commit b29cbaf

Please sign in to comment.