Add ability to specify number prefixes for floating point and integers.

This commit is contained in:
Jason Turner
2012-11-07 12:05:34 -07:00
parent 9832d1ce39
commit 623c64299a
3 changed files with 162 additions and 20 deletions

View File

@@ -447,6 +447,7 @@ namespace chaiscript
bootstrap_pod_type<long double>("long_double", m);
bootstrap_pod_type<float>("float", m);
bootstrap_pod_type<int>("int", m);
bootstrap_pod_type<long>("long", m);
bootstrap_pod_type<unsigned int>("unsigned_int", m);
bootstrap_pod_type<unsigned long>("unsigned_long", m);
bootstrap_pod_type<size_t>("size_t", m);