BullseyeCoverage
error C3499: a lambda that has been specified to have a void return type cannot return a value
Visual Studio 2010 does not fully support the C++ syntax BullseyeCoverage uses for instrumenting lambda expressions.
Use one of the following alternatives.
[](T n) { return n; } // C3499 with BullseyeCoverage [](T n) -> T { return n; } // OK
Updated: 21 Mar 2017
Copyright © Bullseye Testing Technology. All Rights Reserved.