This adds get_size() to all vector implementations.

get_size() was added so that vectors could all be converted to Vector4
when being turned into binary values.

from_str_radix() for floating point numbers was deprecated from the
standard library. Until there is time to write our own implementation
of this floating point numbers will panic on non base 10 string
conversion. Base 10 string conversion will use the from_str function.
This commit is contained in:
Jason Travis Smith
2015-12-31 02:58:21 -05:00
parent a618fb27f7
commit 902aeb5dbe
3 changed files with 23 additions and 6 deletions

View File

@ -3,7 +3,6 @@
//!
//!
#![feature(zero_one)]
#![feature(float_from_str_radix)]
#![feature(float_extras)]
#![feature(associated_consts)]