From bd092295a4e2e83f1477247d459e7af593aaa689 Mon Sep 17 00:00:00 2001 From: hypnosis-i2p Date: Mon, 20 Jun 2016 02:31:27 +0800 Subject: [PATCH] fixed #519 --- Tunnel.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Tunnel.cpp b/Tunnel.cpp index 1403330b..961cc97e 100644 --- a/Tunnel.cpp +++ b/Tunnel.cpp @@ -861,6 +861,12 @@ namespace tunnel // TODO: locking return m_OutboundTunnels.size(); } + +#ifdef ANDROID_ARM7A + template std::shared_ptr Tunnels::CreateTunnel(std::shared_ptr, std::shared_ptr); + template std::shared_ptr Tunnels::CreateTunnel(std::shared_ptr, std::shared_ptr); +#endif + } }