This is an automated email from the ASF dual-hosted git repository. astitcher pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/qpid-proton.git
The following commit(s) were added to refs/heads/main by this push: new 3b1c7ba NO-JIRA Add missing <vector> header in source_options and target_options 3b1c7ba is described below commit 3b1c7ba386fb23cb352b29ffc93a511cab41f40e Author: Rakhi Kumari <rakhi.c...@gmail.com> AuthorDate: Tue Jan 4 14:12:34 2022 +0530 NO-JIRA Add missing <vector> header in source_options and target_options --- cpp/include/proton/source_options.hpp | 1 + cpp/include/proton/target_options.hpp | 1 + cpp/src/node_options.cpp | 1 + 3 files changed, 3 insertions(+) diff --git a/cpp/include/proton/source_options.hpp b/cpp/include/proton/source_options.hpp index b221d72..6258a20 100644 --- a/cpp/include/proton/source_options.hpp +++ b/cpp/include/proton/source_options.hpp @@ -29,6 +29,7 @@ #include <map> #include <string> +#include <vector> /// @file /// @copybrief proton::source_options diff --git a/cpp/include/proton/target_options.hpp b/cpp/include/proton/target_options.hpp index 1e24051..8c0bb7a 100644 --- a/cpp/include/proton/target_options.hpp +++ b/cpp/include/proton/target_options.hpp @@ -29,6 +29,7 @@ #include <map> #include <string> +#include <vector> /// @file /// @copybrief proton::target_options diff --git a/cpp/src/node_options.cpp b/cpp/src/node_options.cpp index 0e4d8a7..de2c8d1 100644 --- a/cpp/src/node_options.cpp +++ b/cpp/src/node_options.cpp @@ -31,6 +31,7 @@ #include <limits> #include <map> +#include <vector> namespace proton { --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org For additional commands, e-mail: commits-h...@qpid.apache.org