Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dbc4b45c authored by Josh Gao's avatar Josh Gao Committed by android-build-merger
Browse files

Merge "adb: fix erase-remove_if idiom." am: c2a2ecb7

am: 1f3763ef

Change-Id: I8edeb4df0f168e08e895b4bad8dc9c85bd21c179
parents 0bbdbe3f 1f3763ef
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -172,7 +172,7 @@ void close_smartsockets() EXCLUDES(listener_list_mutex) {
    auto pred = [](const std::unique_ptr<alistener>& listener) {
        return listener->local_name == "*smartsocket*";
    };
    listener_list.erase(std::remove_if(listener_list.begin(), listener_list.end(), pred));
    listener_list.remove_if(pred);
}

InstallStatus install_listener(const std::string& local_name, const char* connect_to,