mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2025-12-06 16:57:04 +08:00
fixed boxed_number to_string impl
This commit is contained in:
parent
c6c2bcc023
commit
78819fd3a8
@ -467,13 +467,13 @@ namespace chaiscript
|
|||||||
} else if (inp_ == typeid(std::int64_t)) {
|
} else if (inp_ == typeid(std::int64_t)) {
|
||||||
return get_as_aux<Target, std::int64_t>();
|
return get_as_aux<Target, std::int64_t>();
|
||||||
} else if (inp_ == typeid(std::uint8_t)) {
|
} else if (inp_ == typeid(std::uint8_t)) {
|
||||||
return get_as_aux<Target, std::int8_t>();
|
return get_as_aux<Target, std::uint8_t>();
|
||||||
} else if (inp_ == typeid(std::uint16_t)) {
|
} else if (inp_ == typeid(std::uint16_t)) {
|
||||||
return get_as_aux<Target, std::int16_t>();
|
return get_as_aux<Target, std::uint16_t>();
|
||||||
} else if (inp_ == typeid(std::uint32_t)) {
|
} else if (inp_ == typeid(std::uint32_t)) {
|
||||||
return get_as_aux<Target, std::int32_t>();
|
return get_as_aux<Target, std::uint32_t>();
|
||||||
} else if (inp_ == typeid(std::uint64_t)) {
|
} else if (inp_ == typeid(std::uint64_t)) {
|
||||||
return get_as_aux<Target, std::int64_t>();
|
return get_as_aux<Target, std::uint64_t>();
|
||||||
} else {
|
} else {
|
||||||
throw chaiscript::detail::exception::bad_any_cast();
|
throw chaiscript::detail::exception::bad_any_cast();
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user