diff options
| author | Billy O'Neal <bion@microsoft.com> | 2020-05-26 22:50:28 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-26 22:50:28 -0700 |
| commit | 7e4ab7967a92fe8dfe889b039425348b8c471030 (patch) | |
| tree | 25b50ea6d6cf1804e568c90840c33d25c5c0a6ad /ports/telnetpp/github-215.patch | |
| parent | d4b6f751b77ff12c94589ee3818e35b105fc40cf (diff) | |
| download | vcpkg-7e4ab7967a92fe8dfe889b039425348b8c471030.tar.gz vcpkg-7e4ab7967a92fe8dfe889b039425348b8c471030.zip | |
[telnetpp] Add missing <ostream> for Visual Studio 2019 16.6 (#11573)
* [telnetpp] Add missing <ostream> for Visual Studio 2019, previously submitted as https://patch-diff.githubusercontent.com/raw/KazDragon/telnetpp/pull/215
Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
Diffstat (limited to 'ports/telnetpp/github-215.patch')
| -rw-r--r-- | ports/telnetpp/github-215.patch | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/ports/telnetpp/github-215.patch b/ports/telnetpp/github-215.patch new file mode 100644 index 000000000..57461b9a7 --- /dev/null +++ b/ports/telnetpp/github-215.patch @@ -0,0 +1,47 @@ + +--- + include/telnetpp/options/msdp/variable.hpp | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/include/telnetpp/options/msdp/variable.hpp b/include/telnetpp/options/msdp/variable.hpp +index 16dae0c..d74a6da 100644 +--- a/include/telnetpp/options/msdp/variable.hpp ++++ b/include/telnetpp/options/msdp/variable.hpp +@@ -5,6 +5,7 @@ + #include <boost/variant.hpp> + #include <iosfwd> + #include <string> ++#include <ostream> + + namespace telnetpp { namespace options { namespace msdp { + + + +--- + include/telnetpp/options/msdp/variable.hpp | 1 - + src/options/msdp/variable.cpp | 1 + + 2 files changed, 1 insertion(+), 1 deletion(-) + +diff --git a/include/telnetpp/options/msdp/variable.hpp b/include/telnetpp/options/msdp/variable.hpp +index d74a6da..16dae0c 100644 +--- a/include/telnetpp/options/msdp/variable.hpp ++++ b/include/telnetpp/options/msdp/variable.hpp +@@ -5,7 +5,6 @@ + #include <boost/variant.hpp> + #include <iosfwd> + #include <string> +-#include <ostream> + + namespace telnetpp { namespace options { namespace msdp { + +diff --git a/src/options/msdp/variable.cpp b/src/options/msdp/variable.cpp +index dc779ea..82549e9 100644 +--- a/src/options/msdp/variable.cpp ++++ b/src/options/msdp/variable.cpp +@@ -1,5 +1,6 @@ + #include "telnetpp/options/msdp/variable.hpp" + #include "telnetpp/detail/lambda_visitor.hpp" ++#include <ostream> + + namespace telnetpp { namespace options { namespace msdp { + |
