From 420aaaedc401e8731af17f8150be08912945d8c0 Mon Sep 17 00:00:00 2001 From: here-mikelley <48072435+here-mikelley@users.noreply.github.com> Date: Fri, 15 May 2020 17:13:09 -0700 Subject: [PATCH 1/6] Fix compile error Add missing #include for std::any_of() and std::count_if() --- olp-cpp-sdk-core/src/http/curl/NetworkCurl.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/olp-cpp-sdk-core/src/http/curl/NetworkCurl.cpp b/olp-cpp-sdk-core/src/http/curl/NetworkCurl.cpp index 849d9608b..0537c27c9 100644 --- a/olp-cpp-sdk-core/src/http/curl/NetworkCurl.cpp +++ b/olp-cpp-sdk-core/src/http/curl/NetworkCurl.cpp @@ -24,6 +24,7 @@ #include #include +#include #include #include #include From 500207f33b2c9720049d7bab644cc6a9bf576102 Mon Sep 17 00:00:00 2001 From: here-mikelley <48072435+here-mikelley@users.noreply.github.com> Date: Fri, 15 May 2020 17:33:01 -0700 Subject: [PATCH 2/6] Fix compile error Add missing #include for std::find_if() --- olp-cpp-sdk-dataservice-read/src/ApiClientLookup.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/olp-cpp-sdk-dataservice-read/src/ApiClientLookup.cpp b/olp-cpp-sdk-dataservice-read/src/ApiClientLookup.cpp index ccac45587..37347d837 100644 --- a/olp-cpp-sdk-dataservice-read/src/ApiClientLookup.cpp +++ b/olp-cpp-sdk-dataservice-read/src/ApiClientLookup.cpp @@ -19,6 +19,7 @@ #include "ApiClientLookup.h" +#include #include #include From 2ae61b74734659697fd9fa073a446f8a684f9e7a Mon Sep 17 00:00:00 2001 From: here-mikelley <48072435+here-mikelley@users.noreply.github.com> Date: Fri, 15 May 2020 17:46:27 -0700 Subject: [PATCH 3/6] Fix compile error Add missing #include for std::find() usage --- olp-cpp-sdk-dataservice-read/src/VolatileLayerClientImpl.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/olp-cpp-sdk-dataservice-read/src/VolatileLayerClientImpl.cpp b/olp-cpp-sdk-dataservice-read/src/VolatileLayerClientImpl.cpp index a2ba4a0bf..ca80869f1 100644 --- a/olp-cpp-sdk-dataservice-read/src/VolatileLayerClientImpl.cpp +++ b/olp-cpp-sdk-dataservice-read/src/VolatileLayerClientImpl.cpp @@ -37,6 +37,8 @@ #include "repositories/PartitionsRepository.h" #include "repositories/PrefetchTilesRepository.h" +#include + namespace olp { namespace dataservice { namespace read { From ace104c7bd40d519e8061f000822e8a556f08bc6 Mon Sep 17 00:00:00 2001 From: here-mikelley <48072435+here-mikelley@users.noreply.github.com> Date: Fri, 15 May 2020 17:50:10 -0700 Subject: [PATCH 4/6] Fix compile error Add #include for std:find() --- olp-cpp-sdk-dataservice-read/src/VersionedLayerClientImpl.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/olp-cpp-sdk-dataservice-read/src/VersionedLayerClientImpl.cpp b/olp-cpp-sdk-dataservice-read/src/VersionedLayerClientImpl.cpp index 807849ce8..546d9fd9c 100644 --- a/olp-cpp-sdk-dataservice-read/src/VersionedLayerClientImpl.cpp +++ b/olp-cpp-sdk-dataservice-read/src/VersionedLayerClientImpl.cpp @@ -34,6 +34,8 @@ #include "repositories/PartitionsRepository.h" #include "repositories/PrefetchTilesRepository.h" +#include + // Needed to avoid endless warnings from GetVersion/WithVersion #include PORTING_PUSH_WARNINGS() From 8e11a227cd622c4ad110fbe3d48525ce795e0295 Mon Sep 17 00:00:00 2001 From: here-mikelley <48072435+here-mikelley@users.noreply.github.com> Date: Fri, 15 May 2020 17:54:06 -0700 Subject: [PATCH 5/6] Fix compile error Add missing #include for std::transform() --- olp-cpp-sdk-dataservice-read/src/StreamLayerClientImpl.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/olp-cpp-sdk-dataservice-read/src/StreamLayerClientImpl.cpp b/olp-cpp-sdk-dataservice-read/src/StreamLayerClientImpl.cpp index cfc650440..22d320214 100644 --- a/olp-cpp-sdk-dataservice-read/src/StreamLayerClientImpl.cpp +++ b/olp-cpp-sdk-dataservice-read/src/StreamLayerClientImpl.cpp @@ -19,6 +19,7 @@ #include "StreamLayerClientImpl.h" +#include #include #include From 6ea989d77b461e38faaa2399958e3a264dbcb0a6 Mon Sep 17 00:00:00 2001 From: here-mikelley <48072435+here-mikelley@users.noreply.github.com> Date: Fri, 15 May 2020 17:57:51 -0700 Subject: [PATCH 6/6] Fix compile error add missing include --- olp-cpp-sdk-dataservice-read/src/generated/api/StreamApi.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/olp-cpp-sdk-dataservice-read/src/generated/api/StreamApi.cpp b/olp-cpp-sdk-dataservice-read/src/generated/api/StreamApi.cpp index 552c96970..df510ba78 100644 --- a/olp-cpp-sdk-dataservice-read/src/generated/api/StreamApi.cpp +++ b/olp-cpp-sdk-dataservice-read/src/generated/api/StreamApi.cpp @@ -19,6 +19,7 @@ #include "StreamApi.h" +#include #include #include