This is an automated email from the ASF dual-hosted git repository. penghui pushed a commit to branch branch-2.8 in repository https://gitbox.apache.org/repos/asf/pulsar.git
commit 5bf8f4c62ef18a90aae949b0bb4ef235d8b4455e Author: Yunze Xu <[email protected]> AuthorDate: Wed Jun 30 14:06:48 2021 +0800 Fix missed header for some compilers (#11152) (cherry picked from commit 6c1d510fa32e4539a5d804e2af4db351f661b322) --- pulsar-client-cpp/lib/KeySharedPolicy.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/pulsar-client-cpp/lib/KeySharedPolicy.cc b/pulsar-client-cpp/lib/KeySharedPolicy.cc index 3e3c5eb..e23a942 100644 --- a/pulsar-client-cpp/lib/KeySharedPolicy.cc +++ b/pulsar-client-cpp/lib/KeySharedPolicy.cc @@ -18,6 +18,7 @@ */ #include <lib/KeySharedPolicyImpl.h> +#include <algorithm> #include <stdexcept> namespace pulsar {
