Add default constructor for Boxed_Number

This commit is contained in:
Markus Groß 2012-05-14 20:13:39 +02:00
parent b0b1549503
commit cdfefed385

View File

@ -297,6 +297,11 @@ namespace chaiscript
public:
Boxed_Number()
: bv(Boxed_Value(0))
{
}
Boxed_Number(const Boxed_Value &v)
: bv(v)
{