Merge pull request #39 from RameshRavone/patch-2

Fix `_arg_cast`
This commit is contained in:
Thomas Herzog 2017-10-03 11:11:18 +02:00 committed by GitHub
commit def39f4862

View File

@ -60,7 +60,7 @@ template<class T>
struct _ArgCast {
static T _arg_cast(Variant a)
{
return static_cast<T>(a);
return a;
}
};