From b98032f6a46072fee9a2bfcbe631b8193ced567d Mon Sep 17 00:00:00 2001 From: Rob Hughes Date: Fri, 24 Apr 2020 11:41:34 +0100 Subject: Fix some Windows build errors: * Cast to correct datatype for Winsock API * Replace non-standard u_int32_t * Add missing link dependency of timelineDecoder on armnn * Don't try to link pthread if the platform doesn't have it * Use abstracted Socket type rather than int * Link to WinSock DLL on windows Change-Id: I9ace4af50257ce1e3da92fb4c452f36775dac973 Signed-off-by: Robert Hughes --- src/armnn/Graph.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/armnn') diff --git a/src/armnn/Graph.cpp b/src/armnn/Graph.cpp index ea9930bf11..c1bf1db038 100644 --- a/src/armnn/Graph.cpp +++ b/src/armnn/Graph.cpp @@ -378,7 +378,7 @@ void Graph::AddCompatibilityLayers(std::map& newSourceConnections = srcOutputSlot.GetConnections(); - long newSrcConnectionIndex = std::distance(newSourceConnections.begin(), + auto newSrcConnectionIndex = std::distance(newSourceConnections.begin(), std::find(newSourceConnections.begin(), newSourceConnections.end(), &compLayer->GetInputSlot(0))); -- cgit v1.2.1