Replaced fancy C++11 lambda with old style static function wrap in Downloader
authorIngo Ruhnke <grumbel@gmail.com>
Tue, 26 Aug 2014 05:24:44 +0000 (07:24 +0200)
committerIngo Ruhnke <grumbel@gmail.com>
Tue, 26 Aug 2014 22:57:44 +0000 (00:57 +0200)
commit844cd972459065bcd4e0bb19adfacd2c5158d0ef
treef0cce5256c2dca9c7b7245ac906c56b08458aae6
parent140e8eab7d0732663de2c1f0a0f2edcc5bc1749f
Replaced fancy C++11 lambda with old style static function wrap in Downloader

The C++11 lambda would work, but the lambda has to be cast to a
C-style function pointer first, cURL however doesn't provide function
pointer definitions for quick and easy casting and since it takes
arguments as va_arg it crashes and burns when passing in a raw lambda.
Old style _wrap is simply easier then casting to the proper function type.
src/addon/downloader.cpp