Debugger: Use the BVariant default constructor in Token().

The value-based constructor does the same. Fixes an "ambiguous
call" error on ARM builds.
This commit is contained in:
Augustin Cavalier
2019-06-17 19:59:40 -04:00
parent 750161f4c0
commit 57e40b4406
@@ -29,7 +29,7 @@ Token::Token()
:
string(""),
type(TOKEN_NONE),
value(0L),
value(),
position(0)
{
}