fixed ArgCast again

pull/11/head
Karroffel 2017-06-19 12:05:38 +02:00
parent 1c5eeee512
commit b6ca6a2d8e
1 changed files with 8 additions and 0 deletions

View File

@ -78,6 +78,14 @@ struct _ArgCast<T*> {
}
};
template<>
struct _ArgCast<Variant> {
static Variant _arg_cast(Variant a)
{
return a;
}
};