Skip to content

Commit

Permalink
Add a missing include in connection_evaluator.h
Browse files Browse the repository at this point in the history
We use std::remove_if in this header, yet <algorithm> wasn't included.
In some circumstances (e.g. when running with clang-tidy on Ubuntu 24.04
on GitHub Actions) it triggered errors about unknown symbols.
  • Loading branch information
MiKom committed Jul 1, 2024
1 parent 838d0dc commit 142d377
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/kdbindings/connection_evaluator.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
*/
#pragma once

#include <algorithm>
#include <functional>
#include <mutex>

Expand Down

0 comments on commit 142d377

Please sign in to comment.