Rename Boxed_POD_Value to Boxed_Numeric, which is more correct.

This commit is contained in:
Jason Turner
2011-05-25 02:39:39 +08:00
committed by Jason Turner
parent 18d4984258
commit 226666c2bb
6 changed files with 89 additions and 89 deletions

View File

@@ -20,7 +20,7 @@
namespace chaiscript
{
class Boxed_POD_Value;
class Boxed_Numeric;
struct AST_Node;
typedef boost::shared_ptr<struct AST_Node> AST_NodePtr;
@@ -139,7 +139,7 @@ namespace chaiscript
if (ti.is_undef()
|| ti.bare_equal(user_type<Boxed_Value>())
|| (!bv.get_type_info().is_undef()
&& (ti.bare_equal(user_type<Boxed_POD_Value>())
&& (ti.bare_equal(user_type<Boxed_Numeric>())
|| ti.bare_equal(bv.get_type_info())
|| chaiscript::detail::dynamic_cast_converts(ti, bv.get_type_info())
|| bv.get_type_info().bare_equal(user_type<boost::shared_ptr<const Proxy_Function_Base> >())